Browse Source

Fix #58

pull/59/head
andrei 8 years ago
parent
commit
2de24597fd
  1. 4
      docs/bot_tutorial/building_block_plugins.md

4
docs/bot_tutorial/building_block_plugins.md

@ -36,9 +36,9 @@ During the unload sequence all greenlets which the plugin owns (e.g. greenlets f
Disco supports a framework for dynamically passing configuration to plugins. By default, configuration files live within the `config/` directory, and are named after the plugin, e.g. `ExamplePlugin` would be configured via `config/example.json`. Adding support for configuration within your plugin can be done via a decorator: Disco supports a framework for dynamically passing configuration to plugins. By default, configuration files live within the `config/` directory, and are named after the plugin, e.g. `ExamplePlugin` would be configured via `config/example.json`. Adding support for configuration within your plugin can be done via a decorator:
```python ```python
from disco.bot import Plugin, PluginConfig from disco.bot import Plugin, Config
class ExamplePluginConfig(PluginConfig): class ExamplePluginConfig(Config):
var1 = "test" var1 = "test"
var2 = True var2 = True

Loading…
Cancel
Save