smol bot
Diffstat (limited to 'src/bot/schematic.rs')
| -rw-r--r-- | src/bot/schematic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot/schematic.rs b/src/bot/schematic.rs index 9eb4d2b..94493e8 100644 --- a/src/bot/schematic.rs +++ b/src/bot/schematic.rs @@ -15,7 +15,7 @@ static RE: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"(```)?(\n)?([^`]+)(\n)?(```)?").unwrap()); pub struct Schem { - schem: Schematic, + pub schem: Schematic, } impl Deref for Schem { |