diff options
| author | Alexander Kavon <hawk@alexkavon.com> | 2023-11-27 17:54:48 -0500 |
|---|---|---|
| committer | Alexander Kavon <hawk@alexkavon.com> | 2023-11-27 17:54:48 -0500 |
| commit | 89f8a2741f3cab499957699d33cfe208db1e6d02 (patch) | |
| tree | 37f7dc7a0ac88ddd8c7b1728859af53b97c7ced8 | |
| parent | 21fb29d0eec71f3dd7c12e260af5925d452b238f (diff) | |
resolvePath function for future path resolution in conf struct building
| -rw-r--r-- | src/conf/conf.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/conf/conf.go b/src/conf/conf.go index 969332a..9cf24aa 100644 --- a/src/conf/conf.go +++ b/src/conf/conf.go @@ -64,3 +64,8 @@ func (c *Conf) GetCwd() string { func (c *Conf) GetPath() string { return c.path } + +func resolvePath(paths ...string) string { + // TODO resolve file paths to cwd + partial or provided path + return "" +} |
