feat: add base FastAPI project structure with static frontend and API v1
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
"""
|
||||
Core module for MokPyo application.
|
||||
|
||||
- Central access point for configuration and security utilities
|
||||
"""
|
||||
|
||||
# Expose key components for easy imports
|
||||
from .config import settings
|
||||
from .security import (
|
||||
hash_password,
|
||||
verify_password,
|
||||
create_access_token,
|
||||
decode_access_token,
|
||||
get_current_user,
|
||||
set_auth_cookie,
|
||||
get_cookie_token,
|
||||
)
|
||||
|
||||
__version__ = settings.APP_VERSION
|
||||
|
||||
Reference in New Issue
Block a user