mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 21:33:06 +01:00
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: "",
|
|
}
|
|
}
|