31 lines
626 B
Python
31 lines
626 B
Python
"""rank.views package aggregate entry - re-export all submodule symbols.
|
|
|
|
Preserves external `from rank.views import X` for rank/urls.py.
|
|
"""
|
|
|
|
from .biaoqian import (
|
|
DashouBiaoqianView,
|
|
BankuaiBiaoqianView,
|
|
KaoheJinpaiTagsView,
|
|
)
|
|
|
|
from .kaoheguan import (
|
|
KAOHEGUAN_INVITE_CODE,
|
|
KaoheguanRegisterView,
|
|
KaoheguanRefreshView,
|
|
KaoheFreeApplyView,
|
|
)
|
|
|
|
from .shenhe import (
|
|
ShenheDatingModuleView,
|
|
ShenheDatingDataView,
|
|
ShenheQiangdanView,
|
|
ShenheXiangqingView,
|
|
ShenheCaozuoView,
|
|
)
|
|
|
|
from .kaohe_jilu import (
|
|
KaoheJiluView,
|
|
KaoheJiluListView,
|
|
)
|