ajout template resultat

This commit is contained in:
Laurent Drogou
2021-01-19 21:21:20 +01:00
parent a148c7eb09
commit 18d04657fc
6 changed files with 161 additions and 36 deletions

View File

@@ -3,6 +3,7 @@ package main
func (s *server) routes() {
s.router.HandleFunc("/index", s.handleIndex()).Methods("GET")
s.router.HandleFunc("/oauth/redirect", s.handleRedirect()).Methods("GET")
s.router.HandleFunc("/test", s.handleTest()).Methods("POST")
s.router.HandleFunc("/local", s.handleLocal()).Methods("POST")
s.router.HandleFunc("/oauth20", s.handleOAuth20()).Methods("POST")
}