Private
Public Access
1
0

Authentication: Implements authentication

This commit is contained in:
2023-06-18 13:11:51 -07:00
parent 53870e25a9
commit 6bbcf8cc63
8 changed files with 302 additions and 10 deletions

View File

@@ -10,7 +10,11 @@ import (
func main() {
log.Println("Initializing")
s := web.NewMockHTTPServer()
c := web.MockHTTPServerConfiguration{
AuthEnabled: false,
}
s := web.NewMockHTTPServer(c)
httpServer := &http.Server{
Addr: ":5738",
Handler: s,