mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 12:57:53 +00:00
16 lines
282 B
Go
16 lines
282 B
Go
|
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
|
||
|
}
|