This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
backend/pkg/fstorage/config.go
2021-05-02 09:15:10 +02:00

15 lines
169 B
Go

package fstorage
import "os"
type Config struct {
BasePath string
}
func getDefaultConfig() *Config {
path, _ := os.Getwd()
return &Config{
BasePath: path,
}
}