Files
herolib/lib/mcp/vcode/command.v
2025-03-28 12:20:56 +01:00

16 lines
261 B
V

module vcode
import cli
const command := cli.Command{
sort_flags: true
name: 'vcode'
execute: cmd_vcode
description: 'will list existing mdbooks'
}
fn cmd_vcode(cmd cli.Command) ! {
mut server := new_mcp_server(&VCode{})!
server.start()!
}