blob: 998108f0a26d074368a18a112d4115237b0d56e7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { Plugin } from "./index"
export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
return {
permission: {},
async "chat.params"(input, output) {
output.topP = 1
},
}
}
|