mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-20 07:01:03 +00:00
feat(app): add plugin system with auth plugin and static assets
Add new application structure: - app/main.py - application entry point - app/plugins/ - plugin system with auth plugin: - api/ - REST API endpoints and schemas - authorization/ - auth policies, providers, hooks - domain/ - business logic (service, models, jwt, password) - injection/ - route injection and guards - ops/ - operational utilities - runtime/ - runtime configuration - security/ - middleware, CSRF, dependencies - storage/ - user repositories and models - app/static/ - static assets (scalar.js for API docs) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"""Auth plugin storage package.
|
||||
|
||||
This package owns auth-specific ORM models and repositories while
|
||||
continuing to use the application's shared persistence infrastructure.
|
||||
"""
|
||||
|
||||
from app.plugins.auth.storage.contracts import User, UserCreate, UserRepositoryProtocol
|
||||
from app.plugins.auth.storage.models import User as UserModel
|
||||
from app.plugins.auth.storage.repositories import DbUserRepository
|
||||
|
||||
__all__ = [
|
||||
"DbUserRepository",
|
||||
"User",
|
||||
"UserCreate",
|
||||
"UserModel",
|
||||
"UserRepositoryProtocol",
|
||||
]
|
||||
Reference in New Issue
Block a user