Only expose config settings via methods on the Config struct. This allows default value handling to live entirely inside the config code, solves various borrowing issues with the "create default bot config value" solution, and allows us to avoid cloning the bot config values. The downside is that the config must now be in an Arc since its ownership is shared in multiple places and the matrix SDK requires thread-safe types (perhaps in the future we re-compose traits and use Rc for config instead). This commit also further cleans up and splits up the bot code for the matrix connection, notably making the main message event handler smaller by splitting out the "should we process the message" checks into a separate function. |
||
---|---|---|
.. | ||
bin | ||
cofd | ||
commands | ||
dice | ||
bot.rs | ||
cofd.rs | ||
commands.rs | ||
config.rs | ||
dice.rs | ||
error.rs | ||
help.rs | ||
lib.rs | ||
parser.rs | ||
roll.rs | ||
state.rs |