blob: 58a351a23f2ae75d7499382af7e7ac8ff5dacac5 (
plain) (
tree)
|
|
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
}
|