feat: add cmd/tapir entrypoint stub

Minimal main that identifies the binary (gives the CI smoke test something to
grep). HTTP server, watcher, adapter wiring, and config come with the build.
This commit is contained in:
mathias
2026-06-02 11:05:37 +00:00
parent 0064e34841
commit 26e37fbbb3
+10
View File
@@ -0,0 +1,10 @@
// Command tapir is the service entrypoint. Scaffold: it identifies itself so
// the CI smoke test has something to grep for, and exits. Wiring the HTTP
// server, watcher, adapters, and config is part of the build.
package main
import "fmt"
func main() {
fmt.Println("tapir: scaffold — not yet implemented")
}