scaffold CLI and fix logging

This commit is contained in:
Zoe
2024-12-03 03:21:12 -06:00
parent 8a55c1593b
commit 9d97e11fc6
9 changed files with 329 additions and 43 deletions

View File

@@ -13,6 +13,6 @@ func main() {
http.HandleFunc("POST /deploy", fluxServer.DeployHandler)
http.HandleFunc("GET /apps", fluxServer.ListAppsHandler)
log.Printf("Fluxd started on http://127.0.0.1:5647")
log.Printf("Fluxd started on http://127.0.0.1:5647\n")
log.Fatal(http.ListenAndServe(":5647", nil))
}