Files
clawd/bin/clawd.js
2026-03-14 20:41:26 +08:00

12 lines
283 B
JavaScript

#!/usr/bin/env node
'use strict';
const { ClawClient } = require('../lib/client');
const client = new ClawClient();
client.start();
// 优雅退出
process.on('SIGINT', () => { client.stop(); process.exit(0); });
process.on('SIGTERM', () => { client.stop(); process.exit(0); });