mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-21 09:07:46 +01:00
20 lines
370 B
Python
20 lines
370 B
Python
|
from .base import BaseSource
|
||
|
from .libgen_doi import LibgenDoiSource
|
||
|
from .libgen_md5 import LibgenMd5Source
|
||
|
from .libgen_new import (
|
||
|
LibraryLolSource,
|
||
|
)
|
||
|
from .scihub import (
|
||
|
SciHubSeSource,
|
||
|
SciHubTwSource,
|
||
|
)
|
||
|
|
||
|
__all__ = [
|
||
|
'BaseSource',
|
||
|
'LibgenDoiSource',
|
||
|
'LibgenMd5Source',
|
||
|
'LibraryLolSource',
|
||
|
'SciHubSeSource',
|
||
|
'SciHubTwSource',
|
||
|
]
|