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") +}