32 lines
790 B
Markdown
32 lines
790 B
Markdown
# App Module - VoIdea
|
|
|
|
## Overview
|
|
|
|
Main application package containing all modules.
|
|
|
|
## Structure
|
|
|
|
```
|
|
app/
|
|
├── core/ # Configuration, base classes, security
|
|
├── models/ # Database models
|
|
├── api/ # API endpoints
|
|
├── services/ # Business logic
|
|
├── integrations/ # External services (AI, OAuth)
|
|
└── agents/ # System agents
|
|
```
|
|
|
|
## Modules
|
|
|
|
| Module | Description |
|
|
|--------|-------------|
|
|
| `core/` | Foundation (config, security, exceptions) |
|
|
| `models/` | SQLAlchemy models and Pydantic schemas |
|
|
| `api/` | FastAPI routers and endpoints |
|
|
| `services/` | Business logic services |
|
|
| `integrations/` | External API integrations |
|
|
| `agents/` | System automation agents |
|
|
|
|
---
|
|
|
|
*This file maintained by DocAgent* |