mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
11 lines
213 B
Rust
11 lines
213 B
Rust
use crate::{models::stats::Stats, AbstractStats, Result};
|
|
|
|
use super::super::DummyDb;
|
|
|
|
#[async_trait]
|
|
impl AbstractStats for DummyDb {
|
|
async fn generate_stats(&self) -> Result<Stats> {
|
|
todo!()
|
|
}
|
|
}
|