Multi-agent AI laboratory with ASP.NET Core 8.0 backend and Flutter frontend. Implements CQRS architecture, OpenAPI contract-first API design. BACKEND: Agent management, conversations, executions with PostgreSQL + Ollama FRONTEND: Cross-platform UI with strict typing and Result-based error handling Co-Authored-By: Jean-Philippe Brule <jp@svrnty.io>
19 lines
430 B
C#
19 lines
430 B
C#
using Codex.CQRS;
|
|
using Codex.Dal;
|
|
using OpenHarbor.CQRS.DynamicQuery.Abstractions;
|
|
using PoweredSoft.Module.Abstractions;
|
|
|
|
namespace Codex.Api;
|
|
|
|
public class AppModule : IModule
|
|
{
|
|
public IServiceCollection ConfigureServices(IServiceCollection services)
|
|
{
|
|
services.AddModule<DalModule>();
|
|
services.AddModule<CommandsModule>();
|
|
services.AddModule<QueriesModule>();
|
|
|
|
return services;
|
|
}
|
|
}
|