diff options
| author | Dax Raad <[email protected]> | 2025-05-17 21:31:42 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-05-26 12:40:17 -0400 |
| commit | a34d020bc6b252e842f042d935c7a0e6444460cf (patch) | |
| tree | ea3484499dff80e82d421e879ab639133ae9c3b4 /pkg/app/paths/paths.go | |
| parent | 96fbc37f0175052291f8a096d530bd4480f6cb19 (diff) | |
| download | opencode-a34d020bc6b252e842f042d935c7a0e6444460cf.tar.gz opencode-a34d020bc6b252e842f042d935c7a0e6444460cf.zip | |
sync
Diffstat (limited to 'pkg/app/paths/paths.go')
| -rw-r--r-- | pkg/app/paths/paths.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/app/paths/paths.go b/pkg/app/paths/paths.go new file mode 100644 index 000000000..03efc85e0 --- /dev/null +++ b/pkg/app/paths/paths.go @@ -0,0 +1,15 @@ +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") +} |
