forked from jmug/stoatchat
7 lines
139 B
Rust
7 lines
139 B
Rust
use crate::Result;
|
|
|
|
#[async_trait]
|
|
pub trait AbstractMigrations: Sync + Send {
|
|
async fn migrate_database(&self) -> Result<()>;
|
|
}
|