mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 10:06:57 +10:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
import type { LocalCommandCall } from '../../types/command.js'
|
|
import { clearConversation } from './conversation.js'
|
|
|
|
export const call: LocalCommandCall = async (_, context) => {
|
|
await clearConversation(context)
|
|
return { type: 'text', value: '' }
|
|
}
|