mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 22:32:28 +00:00
16 lines
290 B
Go
16 lines
290 B
Go
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")
|
|
}
|