Files
sablier/config/storage.go
2022-10-03 20:27:14 +00:00

12 lines
167 B
Go

package config
type Storage struct {
File string `mapstructure:"FILE" yaml:"file" default:""`
}
func NewStorageConfig() Storage {
return Storage{
File: "",
}
}