dev: hotfixes

+ moved cmd/simgos-sync* to cmd/snync*
+ adjust Dockerfiles
This commit is contained in:
2025-12-12 10:51:37 +07:00
parent 44b37e2d49
commit 87baa898f6
17 changed files with 5 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
h "simrs-vx/internal/interface/simgos-sync-handler"
a "github.com/karincake/apem"
d "github.com/karincake/apem/db-gorm-pg"
l "github.com/karincake/apem/logger-zerolog"
)
func main() {
a.Run(h.SetRoutes(), &l.O, &d.O)
}