improved terminal stuff

This commit is contained in:
2022-12-19 17:35:52 +01:00
parent c6e5a836ea
commit 3cb1811dcb
4 changed files with 70 additions and 35 deletions

View File

@@ -1,6 +1,8 @@
package lib;
using tink.CoreApi;
abstract class CLIBase {
public function new() {};
public abstract function invoke(handle: TermHandle): Bool;
public abstract function invoke(handle: TermHandle): Future<Bool>;
}