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/fstorage/config.go

15 lines
169 B
Go

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