diff --git a/pkg/cli/options/script_runner.go b/pkg/cli/options/script_runner.go new file mode 100644 index 000000000..e1ab81e51 --- /dev/null +++ b/pkg/cli/options/script_runner.go @@ -0,0 +1,17 @@ +package options + +type ( + StorageOpt struct { + Path string `env:"STORAGE_PATH"` + } +) + +func Storage(pfix string) (o *StorageOpt) { + o = &StorageOpt{ + Path: "var/store", + } + + fill(o, pfix) + + return +}