diff options
Diffstat (limited to 'src/app.rs')
| -rw-r--r-- | src/app.rs | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -33,36 +33,36 @@ impl App { } impl App { - pub const fn boot(&self) -> Boot { + pub const fn boot(&self) -> Boot<'_> { Boot::new(&self.db) } - pub const fn conversations(&self) -> Conversations { + pub const fn conversations(&self) -> Conversations<'_> { Conversations::new(&self.db, &self.events) } - pub const fn events(&self) -> Events { + pub const fn events(&self) -> Events<'_> { Events::new(&self.db, &self.events) } - pub const fn invites(&self) -> Invites { + pub const fn invites(&self) -> Invites<'_> { Invites::new(&self.db, &self.events) } #[cfg(test)] - pub const fn users(&self) -> Users { + pub const fn users(&self) -> Users<'_> { Users::new(&self.db, &self.events) } - pub const fn messages(&self) -> Messages { + pub const fn messages(&self) -> Messages<'_> { Messages::new(&self.db, &self.events) } - pub const fn setup(&self) -> Setup { + pub const fn setup(&self) -> Setup<'_> { Setup::new(&self.db, &self.events) } - pub const fn tokens(&self) -> Tokens { + pub const fn tokens(&self) -> Tokens<'_> { Tokens::new(&self.db, &self.token_events) } } |
