succd: httpServer -> webServer

This commit is contained in:
Serge Bazanski 2024-09-28 09:19:14 +02:00
parent f66afc0c8f
commit 42c9ae2fa7
2 changed files with 15 additions and 15 deletions

View file

@ -65,10 +65,10 @@ func main() {
}
}
httpServer := httpServer{
web := webServer{
d: &d,
}
httpServer.setupViews()
web.setupViews()
klog.Infof("Listening for HTTP at %s", flagListenHTTP)
go func() {