2023-05-24 16:21:38 +00:00
|
|
|
#!/bin/env node
|
|
|
|
|
|
|
|
|
|
import { TabbyAgent } from "./TabbyAgent";
|
|
|
|
|
import { StdIO } from "./StdIO";
|
|
|
|
|
|
|
|
|
|
const stdio = new StdIO();
|
2023-06-15 15:53:21 +00:00
|
|
|
TabbyAgent.create().then((agent) => {
|
|
|
|
|
stdio.bind(agent);
|
2023-06-22 03:01:57 +00:00
|
|
|
stdio.listen();
|
2023-06-15 15:53:21 +00:00
|
|
|
});
|