10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
import { resolve, join } from "node:path"
|
|
|
|
export const NOSE_ICON = ` ͡° ͜ʖ ͡°`
|
|
|
|
export const NOSE_SYS = resolve("./nose")
|
|
export const NOSE_SYS_BIN = join(NOSE_SYS, "bin")
|
|
|
|
export const NOSE_DIR = resolve("..")
|
|
export const NOSE_BIN = join(NOSE_DIR, "bin")
|
|
export const NOSE_WWW = join(NOSE_DIR, "www") |