diff options
| author | Jeff Carr <[email protected]> | 2025-09-09 17:04:55 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-09 17:04:55 -0500 |
| commit | 022e411f4804d80e4c5a486a8f47bdc02f935941 (patch) | |
| tree | e699780544142d36e6f6a548b551ea478be67b61 /main.go | |
| parent | a6417721594b92830ba94492eddd948385a37859 (diff) | |
more common code
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10,6 +10,7 @@ import ( "go.wit.com/dev/alexflint/arg" "go.wit.com/lib/protobuf/forgepb" + "go.wit.com/lib/protobuf/httppb" "go.wit.com/lib/protobuf/zoopb" "go.wit.com/log" ) @@ -49,5 +50,8 @@ func main() { go NewWatchdog() - startHTTP() + err := httppb.StartHTTP(okHandler, argv.Port) + if err != nil { + log.Info("StartHTTP() err =", err) + } } |
