mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-26 18:37:32 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
18 lines
371 B
Python
18 lines
371 B
Python
from .base import BaseSource
|
|
from .libgen_doi import LibgenDoiSource
|
|
from .libgen_md5 import LibgenMd5Source
|
|
from .libgen_new import LibraryLolSource
|
|
from .scihub import (
|
|
SciHubMksaTopSource,
|
|
SciHubSeSource,
|
|
)
|
|
|
|
__all__ = [
|
|
'BaseSource',
|
|
'LibgenDoiSource',
|
|
'LibgenMd5Source',
|
|
'LibraryLolSource',
|
|
'SciHubMksaTopSource',
|
|
'SciHubSeSource',
|
|
]
|