Flow now works

This commit is contained in:
2024-11-17 20:40:50 +01:00
parent 157896d5d7
commit 6ae65e9169
8 changed files with 144 additions and 276 deletions

View File

@@ -9,6 +9,6 @@ func SetupAppServer() {
fs := http.FileServer(http.Dir("./application/static"))
http.Handle("GET /static/", http.StripPrefix("/static/", fs))
http.HandleFunc("/signup/", controllers.Signup)
http.HandleFunc("/advanced/{companyString}", controllers.Advanced)
http.HandleFunc("/thankyou", controllers.ThankYou)
http.HandleFunc("/", controllers.Index)
}