2021-10-01 21:14:10 +00:00
|
|
|
from . import admin_endpoints
|
2018-01-12 03:40:56 +00:00
|
|
|
from . import album_endpoints
|
2018-02-03 09:34:07 +00:00
|
|
|
from . import basic_endpoints
|
2018-01-12 03:40:56 +00:00
|
|
|
from . import bookmark_endpoints
|
|
|
|
from . import photo_endpoints
|
|
|
|
from . import tag_endpoints
|
|
|
|
from . import user_endpoints
|
2021-08-21 05:32:19 +00:00
|
|
|
|
|
|
|
__all__ = [
|
2021-10-01 21:14:10 +00:00
|
|
|
'admin_endpoints',
|
2021-08-21 05:32:19 +00:00
|
|
|
'album_endpoints',
|
|
|
|
'basic_endpoints',
|
|
|
|
'bookmark_endpoints',
|
|
|
|
'photo_endpoints',
|
|
|
|
'tag_endpoints',
|
|
|
|
'user_endpoints',
|
|
|
|
]
|