summaryrefslogtreecommitdiffhomepage
path: root/pkg/app/paths
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/app/paths')
-rw-r--r--pkg/app/paths/paths.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/pkg/app/paths/paths.go b/pkg/app/paths/paths.go
deleted file mode 100644
index 03efc85e0..000000000
--- a/pkg/app/paths/paths.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package paths
-
-import "path/filepath"
-
-func Data(project string) string {
- return filepath.Join(project, ".opencode")
-}
-
-func Storage(project string) string {
- return filepath.Join(Data(project), "storage")
-}
-
-func Log(project string) string {
- return filepath.Join(Data(project), "log")
-}