novel-api 0.19.1

Novel APIs from various sources
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod m20221215_070928_create_table;

pub use sea_orm_migration::prelude::*;

#[must_use]
pub struct Migrator;

impl MigratorTrait for Migrator {
    fn migrations() -> Vec<Box<dyn MigrationTrait>> {
        vec![Box::new(m20221215_070928_create_table::Migration)]
    }
}