fix: Fix entrypoint

This commit is contained in:
Bakhtiyar Issakhmetov 2026-06-25 01:26:16 +05:00
parent e0a902f498
commit 46add88fd5
2 changed files with 14 additions and 1 deletions

4
.gitignore vendored
View File

@ -2,4 +2,6 @@
.claude
/bin/
/out/
gis
# Root-level build output only — must stay anchored so it does not match the
# cmd/gis source directory.
/gis

11
cmd/gis/main.go Normal file
View File

@ -0,0 +1,11 @@
// Command gis is the entrypoint for the GIS application.
//
// It exposes subcommands for running the HTTP server, the RabbitMQ worker, and
// database migrations. See `gis --help` for details.
package main
import "gis/internal/cli"
func main() {
cli.Execute()
}