3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-19 07:20:00 +00:00
zeppelin/backend/src/plugins/Utility/commands/SearchCmd.ts

15 lines
234 B
TypeScript
Raw Normal View History

import { utilityCmd } from "../types";
import { baseTypeHelpers as t } from "knub";
export const SearchCmd = utilityCmd({
trigger: ["search", "s"],
signature: {
query: t.string({ catchAll: true }),
},
run() {
},
});