1
0
Fork 0
passwordhash/cli.ts

8 lines
224 B
TypeScript
Raw Normal View History

2020-11-19 23:23:47 +00:00
#!/usr/bin/env -S deno run --allow-run --allow-read --allow-env
2020-11-19 23:00:15 +00:00
import { showZenityUI } from "./ui/zenity.ts";
if (import.meta.main) {
// TODO fall back on terminal UI if zenity is not available
await showZenityUI();
}