blob: 82d54f815487a61abfcfdf744b5a19375f510dcd (
plain)
1
2
3
4
5
6
7
8
9
10
|
// deno-lint-ignore-file no-process-globals
import LoginScreen from "./screen/login.ts";
import { build } from "./screenbuilder.ts";
import readline from 'node:readline';
readline.emitKeypressEvents(process.stdin);
if (process.stdin.isTTY) process.stdin.setRawMode(true); // makes the terminal send stdin without the user pressing enter
build(LoginScreen)
|