chore: makefile, http server command

This commit is contained in:
IliaDenisov
2026-02-12 15:05:51 +03:00
parent e8c3411a50
commit ce3d9c5d48
3 changed files with 40 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package http
import (
"fmt"
"os"
"github.com/iliadenisov/galaxy/internal/router"
)
func main() {
r := router.NewRouter()
if err := r.Run(); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}