Remove unused -path
This commit is contained in:
parent
d61bb3ef6c
commit
6a42686c29
1 changed files with 0 additions and 6 deletions
|
@ -20,11 +20,6 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// local path where the SQLite database
|
|
||||||
// should be stored. By default this is
|
|
||||||
// in the current working directory.
|
|
||||||
path string
|
|
||||||
|
|
||||||
// port the server will run on
|
// port the server will run on
|
||||||
port string
|
port string
|
||||||
|
|
||||||
|
@ -49,7 +44,6 @@ var (
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
// parse command line flags
|
// parse command line flags
|
||||||
flag.StringVar(&path, "path", "", "")
|
|
||||||
flag.StringVar(&port, "port", ":8080", "")
|
flag.StringVar(&port, "port", ":8080", "")
|
||||||
flag.StringVar(&driver, "driver", "sqlite3", "")
|
flag.StringVar(&driver, "driver", "sqlite3", "")
|
||||||
flag.StringVar(&datasource, "datasource", "drone.sqlite", "")
|
flag.StringVar(&datasource, "datasource", "drone.sqlite", "")
|
||||||
|
|
Loading…
Reference in a new issue