dhttp-access 0.2.0

Identity-aware access control primitives for DHttp
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use sea_orm_migration::prelude::*;

mod m20250909_154000_create_table;

pub struct Migrator;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
    // Override the name of migration table
    fn migration_table_name() -> sea_orm::DynIden {
        Alias::new("migration").into_iden()
    }

    fn migrations() -> Vec<Box<dyn MigrationTrait>> {
        vec![Box::new(m20250909_154000_create_table::Migration)]
    }
}