Add authentication middleware

This commit is contained in:
Achim Rohn
2025-09-17 17:32:50 +02:00
parent 8bc7b1e27b
commit 667345bc9e
5 changed files with 291 additions and 12 deletions
+1 -1
View File
@@ -33,6 +33,6 @@ func main() {
}
Debug("starting white label app on port 8090")
handler := routes.CreateApi()
handler := routes.CreateApi(environment, client)
log.Fatal(http.ListenAndServe(":8090", handler))
}