(version, dbPath string)
| 13 | } |
| 14 | |
| 15 | func NewServices(version, dbPath string) Services { |
| 16 | return Services{ |
| 17 | App: NewAppService(version), |
| 18 | Providers: NewProviderService(dbPath), |
| 19 | MCP: NewMCPService(), |
| 20 | Entities: NewEntityService(), |
| 21 | Tools: NewToolService(), |
| 22 | Doctor: NewDoctorService(version, dbPath), |
| 23 | Config: NewConfigService(), |
| 24 | Launch: NewLaunchService(dbPath), |
| 25 | } |
| 26 | } |