1
0
mirror of https://github.com/restic/restic.git synced 2024-07-13 10:24:12 +02:00
restic/backend/local/config.go

16 lines
282 B
Go
Raw Normal View History

2015-12-28 15:51:24 +01:00
package local
import (
"errors"
"strings"
)
// ParseConfig parses a local backend config.
func ParseConfig(cfg string) (interface{}, error) {
if !strings.HasPrefix(cfg, "local:") {
return nil, errors.New(`invalid format, prefix "local" not found`)
}
return cfg[6:], nil
}