🎉 initial commit

This commit is contained in:
2021-01-13 23:39:00 +01:00
commit 8e9cbe797c
9 changed files with 161 additions and 0 deletions

6
routes.go Normal file
View File

@@ -0,0 +1,6 @@
package main
func (s *server) routes() {
s.router.HandleFunc("/", s.handleIndex()).Methods("GET")
s.router.HandleFunc("/oauth/redirect", s.handleRedirect()).Methods("GET")
}