diff options
author | Gibheer <gibheer+git@zero-knowledge.org> | 2022-12-15 11:16:56 +0100 |
---|---|---|
committer | Gibheer <gibheer+git@zero-knowledge.org> | 2022-12-15 11:16:56 +0100 |
commit | e29f38937cdf077a99b45c27e49f553d4dd8d0d7 (patch) | |
tree | 38509003a153a0100cb1a69a5d7a752ad2ff7616 /cmd/monfront/main.go | |
parent | 49dac92034f352698429ee1d78d4bfb070006693 (diff) |
monfront - add basic interface to create some entities
Diffstat (limited to 'cmd/monfront/main.go')
-rw-r--r-- | cmd/monfront/main.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/monfront/main.go b/cmd/monfront/main.go index 63c1b9a..a318e75 100644 --- a/cmd/monfront/main.go +++ b/cmd/monfront/main.go @@ -170,6 +170,7 @@ func main() { s := newServer(l, db, tmpl, auth, autho) s.Handle("/", showChecks) + s.Handle("/create", showCreate) s.Handle("/check", showCheck) s.Handle("/checks", showChecks) s.Handle("/groups", showGroups) |