via

Simple pubsub server inspired by https://patchbay.pub/
git clone https://git.ce9e.org/via.git

commit
69e4b6bed62cc4e8355ec2c6e865a9c98124739d
parent
20f8b031e14eb84e562eb5f19646dafc79f5f30a
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-07-16 05:21
fix usage string

Diffstat

M via.go 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/via.go b/via.go

@@ -237,7 +237,7 @@ func handleStore(w http.ResponseWriter, r *http.Request) {
  237   237 
  238   238 func main() {
  239   239 	flag.Usage = func() {
  240    -1 		fmt.Fprintf(os.Stderr, "via [-v] [port]\n")
   -1   240 		fmt.Fprintf(os.Stderr, "via [-v] [-d storage_dir] [port]\n")
  241   241 		flag.PrintDefaults()
  242   242 	}
  243   243