diff options
author | Melody Horn <melody@boringcactus.com> | 2021-06-29 22:44:11 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-06-29 22:44:11 -0600 |
commit | 9829bbfcd57c57e237c6aacb96a78d0b9f5bab68 (patch) | |
tree | 43dc643d7b592d9abc4c5f89121e249ccb597d7d /examples/tutorial01 | |
parent | 9dd7f2256a82f95096d928aaef70d15603152ebc (diff) | |
download | tosin-9829bbfcd57c57e237c6aacb96a78d0b9f5bab68.tar.gz tosin-9829bbfcd57c57e237c6aacb96a78d0b9f5bab68.zip |
lol no generics
Diffstat (limited to 'examples/tutorial01')
-rw-r--r-- | examples/tutorial01/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/tutorial01/main.rs b/examples/tutorial01/main.rs index af2f14d..47623e6 100644 --- a/examples/tutorial01/main.rs +++ b/examples/tutorial01/main.rs @@ -2,7 +2,6 @@ extern crate diesel; use tosin::contrib::admin; -use tosin::db::backend::Connectable; use tosin::urls::{url_map, UrlMap}; use tosin::Settings; @@ -15,7 +14,7 @@ fn urls() -> UrlMap { } } -fn settings() -> Settings<impl Connectable> { +fn settings() -> Settings { Settings { ..Settings::default() } |