mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
Initial implementation of config file
This commit is contained in:
parent
1db4349eb0
commit
2baae37f5f
9 changed files with 672 additions and 19 deletions
|
|
@ -8,6 +8,8 @@ import (
|
|||
"net"
|
||||
"net/http"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
|
@ -78,4 +80,10 @@ func MakeOutputDirectory(path string) (string, error) {
|
|||
return final, fmt.Errorf("could not make directory: %v", err)
|
||||
}
|
||||
return final, nil
|
||||
}
|
||||
}
|
||||
|
||||
func SplitPathForViper(path string) (string, string, string) {
|
||||
filename := filepath.Base(path)
|
||||
ext := filepath.Ext(filename)
|
||||
return filepath.Dir(path), strings.TrimSuffix(filename, ext), strings.TrimPrefix(ext, ".")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue