Compare commits

..

1 Commits
v0.1.0 ... main

Author SHA1 Message Date
1132f77249 basic test of modules 2025-01-23 22:46:56 -05:00

View File

@ -1,4 +1,4 @@
package httpi
package main
import (
"net/http"
@ -19,3 +19,8 @@ func NewServer() *Server {
func (s *Server) Start() error {
return s.httpServer.ListenAndServe()
}
func main() {
server := NewServer()
server.Start()
}