From 89f8a2741f3cab499957699d33cfe208db1e6d02 Mon Sep 17 00:00:00 2001 From: Alexander Kavon Date: Mon, 27 Nov 2023 17:54:48 -0500 Subject: resolvePath function for future path resolution in conf struct building --- src/conf/conf.go | 5 +++++ 1 file changed, 5 insertions(+) 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 "" +} -- cgit v1.2.3