Added concurrent sync, added search page. Other small changes

This commit is contained in:
2024-10-04 20:19:40 +02:00
parent fafa044c9b
commit 8fa93d580d
35 changed files with 1901 additions and 89 deletions

View File

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