调整项目结构

This commit is contained in:
glide-the 2023-05-30 20:40:27 +08:00
parent 875dae64bf
commit 0a605bf4b5
2 changed files with 9 additions and 0 deletions

9
models/base/__init__.py Normal file
View File

@ -0,0 +1,9 @@
from models.base.base import (
AnswerResult,
BaseAnswer
)
__all__ = [
"AnswerResult",
"BaseAnswer",
]