feat: basic firmware registry

This commit is contained in:
2025-10-21 14:27:21 +02:00
commit 986745d8c8
20 changed files with 1831 additions and 0 deletions

19
main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"log"
"spore-registry/internal/app"
)
func main() {
application, err := app.NewApp()
if err != nil {
log.Fatal("Failed to initialize application:", err)
}
defer application.Close()
if err := application.Start(); err != nil {
log.Fatal("Server failed:", err)
}
}