mirror of
https://github.com/sablierapp/sablier.git
synced 2026-01-01 18:47:23 +01:00
* refactor: rename providers to Provider * refactor folders * fix build cmd * fix build cmd * fix build cmd * fix cmd start
12 lines
167 B
Go
12 lines
167 B
Go
package config
|
|
|
|
type Storage struct {
|
|
File string `mapstructure:"FILE" yaml:"file" default:""`
|
|
}
|
|
|
|
func NewStorageConfig() Storage {
|
|
return Storage{
|
|
File: "",
|
|
}
|
|
}
|