fix: Fix entrypoint
This commit is contained in:
parent
e0a902f498
commit
46add88fd5
4
.gitignore
vendored
4
.gitignore
vendored
@ -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
11
cmd/gis/main.go
Normal 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()
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user