Files
OwnCord/Server/plugin/examples/hello/plugin.json
T

16 lines
364 B
JSON
Raw Normal View History

{
"name": "hello",
"version": "0.1.0",
"author": "OwnCord",
"description": "Trivial proof-of-life plugin: registers /hello and echoes message_send events.",
"entrypoint": "hello.wasm",
"permissions": ["commands", "events", "storage"],
"commands": [
{ "name": "hello" }
],
"resources": {
"max_memory_mb": 16,
"cpu_budget_ms": 50
}
}