Initial commit

This commit is contained in:
2024-07-12 13:23:54 -04:00
commit 5146fd4ba7
12 changed files with 489 additions and 0 deletions

16
cmd/api/main.go Normal file
View File

@@ -0,0 +1,16 @@
package main
import (
"fmt"
"gothtest/internal/server"
)
func main() {
server := server.NewServer()
err := server.ListenAndServe()
if err != nil {
panic(fmt.Sprintf("cannot start server: %s", err))
}
}