From: Scott Worley Date: Wed, 1 Aug 2012 04:56:22 +0000 (-0700) Subject: Actually use the command line flags X-Git-Url: http://git.scottworley.com/reliable-chat/commitdiff_plain/bc44b6bc1d0d714686b075e4b4c370e6136acf0b?ds=inline Actually use the command line flags --- diff --git a/server/server.go b/server/server.go index 5c5ef50..211ea6c 100644 --- a/server/server.go +++ b/server/server.go @@ -178,6 +178,7 @@ func start_server(store Store) { } func main() { + flag.Parse() store := start_store() start_server(store) }