blob: 7621cae3bcf9c89bdecc44c233f875b81f53543f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import path from "node:path";
export namespace AppPath {
export function data(input: string) {
return path.join(input, ".opencode");
}
export function storage(input: string) {
return path.join(data(input), "storage");
}
}
|