* Start by moving what we have to _templates * WIP * WIP * Add create/edit/delete template commands * Type fixes cli Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: zomars <zomars@me.com>
5 lines
173 B
TypeScript
5 lines
173 B
TypeScript
import path from "path";
|
|
|
|
export const APP_STORE_PATH = path.join(__dirname, "..", "..", "app-store");
|
|
export const TEMPLATES_PATH = path.join(APP_STORE_PATH, "templates");
|