feat: update ingest, registry, and UI flows

This commit is contained in:
2026-02-15 21:50:35 +03:00
parent e6eca7cd50
commit 5518c3b405
35 changed files with 2615 additions and 497 deletions

View File

@@ -37,6 +37,7 @@ func NewServer(addr string, readTimeout, writeTimeout time.Duration, db *sql.DB)
RegisterRegistryRoutes(mux, RegistryDependencies{
Customers: registry.NewCustomerRepository(db),
Projects: registry.NewProjectRepository(db),
Locations: registry.NewLocationRepository(db),
Assets: assetRepo,
Components: componentRepo,
Lots: lotRepo,
@@ -67,6 +68,7 @@ func NewServer(addr string, readTimeout, writeTimeout time.Duration, db *sql.DB)
RegisterUIRoutes(mux, UIDependencies{
Customers: registry.NewCustomerRepository(db),
Projects: registry.NewProjectRepository(db),
Locations: registry.NewLocationRepository(db),
Assets: assetRepo,
Components: componentRepo,
Lots: lotRepo,