🚀 feat(models/__init__.py): add User and Token models to __all__ list for better module importability

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-08-21 16:55:45 -03:00
commit fa9ecd0039

View file

@ -1,4 +1,5 @@
from .flow import Flow
from .user import User
from .token import Token
__all__ = ["Flow"]
__all__ = ["Flow", "User", "Token"]