Changed routing framework from mux to Gin.

Swagger doc is now included in the application.
A fronted can now be hosted from the application.
This commit is contained in:
2022-01-29 17:52:33 +01:00
parent 512fcd0c4f
commit f9d6c24a97
43 changed files with 28760 additions and 210 deletions

20
cmd/main.go Normal file
View File

@@ -0,0 +1,20 @@
package main
import (
"embed"
"music-server/pkg/conf"
)
//go:embed frontend/dist
var frontend embed.FS
//go:embed swagger
var swagger embed.FS
func main() {
conf.SetupDb()
conf.SetupRestServer(frontend, swagger)
conf.CloseDb()
}