summaryrefslogtreecommitdiff
path: root/internal/cli/serve.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cli/serve.go')
-rw-r--r--internal/cli/serve.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/cli/serve.go b/internal/cli/serve.go
index 9545f5c..363e276 100644
--- a/internal/cli/serve.go
+++ b/internal/cli/serve.go
@@ -13,6 +13,7 @@ import (
"github.com/thepeterstone/claudomator/internal/api"
"github.com/thepeterstone/claudomator/internal/executor"
"github.com/thepeterstone/claudomator/internal/storage"
+ "github.com/thepeterstone/claudomator/internal/version"
"github.com/spf13/cobra"
)
@@ -83,7 +84,7 @@ func serve(addr string) error {
httpSrv.Shutdown(shutdownCtx)
}()
- fmt.Printf("Claudomator server listening on %s\n", addr)
+ fmt.Printf("Claudomator %s listening on %s\n", version.Version(), addr)
if err := httpSrv.ListenAndServe(); err != http.ErrServerClosed {
return err
}