embed static files now (#14)
Some checks failed
continuous-integration/drone/push Build is failing

Co-authored-by: sneak <sneak@sneak.berlin>
Reviewed-on: #14
This commit was merged in pull request #14.
This commit is contained in:
2022-11-28 00:19:47 +00:00
parent 4e663d848a
commit 61228b4586
23 changed files with 795 additions and 406 deletions

View File

@@ -0,0 +1,12 @@
package server
import (
"fmt"
"net/http"
)
func (s *server) handleLogin() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello login")
}
}