diff options
author | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-19 23:10:53 -0600 |
---|---|---|
committer | Melody Horn / boringcactus <melody@boringcactus.com> | 2021-06-19 23:10:53 -0600 |
commit | 88d527d574567420d7aa72f37205bd6b345b8dd7 (patch) | |
tree | 4cbec62f262d29c88b15df02e1d37f003991d99e /examples/tutorial01 | |
parent | f2009f7135f92959e919a85a02584d7a0d7b8e47 (diff) | |
download | tosin-88d527d574567420d7aa72f37205bd6b345b8dd7.tar.gz tosin-88d527d574567420d7aa72f37205bd6b345b8dd7.zip |
generate diesel::table! in derive(Model)
Diffstat (limited to 'examples/tutorial01')
-rw-r--r-- | examples/tutorial01/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/tutorial01/main.rs b/examples/tutorial01/main.rs index 7426ab7..52ae922 100644 --- a/examples/tutorial01/main.rs +++ b/examples/tutorial01/main.rs @@ -1,3 +1,5 @@ +#[macro_use] extern crate diesel; + use tosin::Settings; use tosin::contrib::admin; use tosin::db::backend::Connectable; |