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