Add stub for storagemgr program

This commit is contained in:
The Magician 2024-05-24 18:37:12 +01:00
parent 974893605d
commit 1dc003211a
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("storage manager")
}