Files
sablier/pkg/config/storage.go
Alexis Couvreur fca9c79289 refactor: reorganize code structure (#556)
* refactor: rename providers to Provider

* refactor folders

* fix build cmd

* fix build cmd

* fix build cmd

* fix cmd start
2025-03-10 14:11:40 -04:00

12 lines
167 B
Go

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