18 lines
400 B
TypeScript
18 lines
400 B
TypeScript
// Client exports - for library consumers
|
|
export * from './client/index.js';
|
|
|
|
// Protocol types - shared between client and daemon
|
|
export * from './shared/protocol/ipc.types.js';
|
|
|
|
// Daemon exports - for direct daemon control
|
|
export { startDaemon } from './daemon/index.js';
|
|
|
|
import * as cli from './cli.js';
|
|
|
|
/**
|
|
* called to run as cli
|
|
*/
|
|
export const runCli = async () => {
|
|
await cli.run();
|
|
};
|