6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import { Context } from "effect"
|
|
|
|
export const CurrentWorkingDirectory = Context.Reference<string>("CurrentWorkingDirectory", {
|
|
defaultValue: () => process.cwd(),
|
|
})
|