slash-command.wit
1interface slash-command {
2 /// A slash command for use in the Assistant.
3 record slash-command {
4 /// The name of the slash command.
5 name: string,
6 /// The description of the slash command.
7 description: string,
8 /// Whether this slash command requires an argument.
9 requires-argument: bool,
10 }
11}