1
0
mirror of https://github.com/taigrr/shorturl synced 2025-01-18 04:03:16 -08:00

Fixed typo in -dbpath option

This commit is contained in:
James Mills 2017-07-03 00:11:04 -07:00
parent 8ff215fdb6
commit 489d647a6f
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6

View File

@ -20,7 +20,7 @@ func main() {
) )
flag.StringVar(&config, "config", "", "config file") flag.StringVar(&config, "config", "", "config file")
flag.StringVar(&dbpath, "dbpth", "urls.db", "Database path") flag.StringVar(&dbpath, "dbpath", "urls.db", "Database path")
flag.StringVar(&bind, "bind", "0.0.0.0:8000", "[int]:<port> to bind to") flag.StringVar(&bind, "bind", "0.0.0.0:8000", "[int]:<port> to bind to")
flag.Parse() flag.Parse()