nose-pluto/nose/bin/project.ts
Chris Wanstrath fa4f103ad4 simplify
2025-09-21 12:10:14 -07:00

8 lines
182 B
TypeScript

import { Thread } from "@/shell"
export default function () {
const state = Thread.getStore()
if (!state) return { error: "no state" }
return state?.project || "none"
}