diff options
Diffstat (limited to '')
-rw-r--r-- | cmd/web/routes.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cmd/web/routes.go b/cmd/web/routes.go new file mode 100644 index 0000000..58a351a --- /dev/null +++ b/cmd/web/routes.go @@ -0,0 +1,18 @@ +package main + +import "net/http" + +func (app *application) routes() *http.ServeMux { + mux := http.NewServeMux() + + fileServer := http.FileServer(http.Dir("./ui/static/")) + mux.Handle("/static/", http.StripPrefix("/static", fileServer)) + + mux.HandleFunc("/", app.home) + mux.HandleFunc("/organisation/list", app.listOrganisations) + mux.HandleFunc("/organisation/view", app.organisationView) + mux.HandleFunc("/organisation/create", app.organisationCreate) + mux.HandleFunc("/operation/list", app.listOperations) + mux.HandleFunc("/person/list", app.listPersons) + return mux +} |