Initial commit: VoIdeaAI - voice-first AI idea assistant

This commit is contained in:
2026-05-13 12:51:42 +03:00
commit 688d043dad
421 changed files with 47915 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
"""VoIdea - Core module."""
from app.core.config import settings
from app.core.base import BaseModel, BaseService
from app.core.exceptions import (
AppError,
NotFoundError,
PermissionError,
ValidationError,
)
from app.core.security import (
create_access_token,
verify_password,
get_password_hash,
)
__all__ = [
"settings",
"BaseModel",
"BaseService",
"AppError",
"NotFoundError",
"PermissionError",
"ValidationError",
"create_access_token",
"verify_password",
"get_password_hash",
]