Commit be9c1146 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

no need for ; here

cc @mildred
parent f223aef4
...@@ -77,13 +77,13 @@ func Path(configroot, extension string) (string, error) { ...@@ -77,13 +77,13 @@ func Path(configroot, extension string) (string, error) {
// DataStorePath returns the default data store path given a configuration root // DataStorePath returns the default data store path given a configuration root
// (set an empty string to have the default configuration root) // (set an empty string to have the default configuration root)
func DataStorePath(configroot string) (string, error) { func DataStorePath(configroot string) (string, error) {
return Path(configroot, DefaultDataStoreDirectory); return Path(configroot, DefaultDataStoreDirectory)
} }
// Filename returns the configuration file path given a configuration root // Filename returns the configuration file path given a configuration root
// directory. If the configuration root directory is empty, use the default one // directory. If the configuration root directory is empty, use the default one
func Filename(configroot string) (string, error) { func Filename(configroot string) (string, error) {
return Path(configroot, DefaultConfigFile); return Path(configroot, DefaultConfigFile)
} }
// DecodePrivateKey is a helper to decode the users PrivateKey // DecodePrivateKey is a helper to decode the users PrivateKey
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment