From 26e37fbbb3695c7f8af799e55c023eb67ad6af97 Mon Sep 17 00:00:00 2001 From: mathias Date: Tue, 2 Jun 2026 11:05:37 +0000 Subject: [PATCH] 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. --- cmd/tapir/main.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cmd/tapir/main.go diff --git a/cmd/tapir/main.go b/cmd/tapir/main.go new file mode 100644 index 0000000..dd1e7a6 --- /dev/null +++ b/cmd/tapir/main.go @@ -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") +}