Added search

Added a search page and fixed som error with migration
This commit is contained in:
2024-12-26 14:55:47 +01:00
parent 2a537d2398
commit a5f8e1b2ba
14 changed files with 3787 additions and 78 deletions

View File

@@ -8,13 +8,10 @@ import (
//go:embed swagger
var swagger embed.FS
//go:embed search
var search embed.FS
func main() {
conf.SetupDb()
conf.SetupRestServer(swagger, search)
conf.SetupRestServer(swagger)
conf.CloseDb()
}