🚀 feat(models/__init__.py): add User and Token models to __all__ list for better module importability
This commit is contained in:
parent
181620e538
commit
fa9ecd0039
1 changed files with 3 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
from .flow import Flow
|
||||
from .user import User
|
||||
from .token import Token
|
||||
|
||||
|
||||
__all__ = ["Flow"]
|
||||
__all__ = ["Flow", "User", "Token"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue