Add stub for storagemgr program
This commit is contained in:
parent
974893605d
commit
1dc003211a
|
@ -2,6 +2,8 @@ createdb:
|
||||||
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/createdb.sql
|
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/createdb.sql
|
||||||
import: createdb
|
import: createdb
|
||||||
go run cmd/importer/main.go
|
go run cmd/importer/main.go
|
||||||
|
storagemgr:
|
||||||
|
go run cmd/storagemgr/main.go
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/removedb.sql
|
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/removedb.sql
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
func main() {
|
||||||
|
fmt.Println("storage manager")
|
||||||
|
}
|
Loading…
Reference in New Issue