robson-core 0.0.2

Rust async agent orchestrator for automated development workflows
Documentation
pub use sea_orm_migration::prelude::*;

mod m20240201_000002_create_agent_tables;
mod m20240201_000003_add_processed_and_process_events;
mod m20240201_000004_add_delivered_at_to_process_events;
mod m20240201_000005_create_process_event_deliveries;
mod m20240201_000006_add_gateways;

pub struct Migrator;

#[async_trait::async_trait]
impl MigratorTrait for Migrator {
    fn migrations() -> Vec<Box<dyn MigrationTrait>> {
        vec![
            Box::new(m20240201_000002_create_agent_tables::Migration),
            Box::new(m20240201_000003_add_processed_and_process_events::Migration),
            Box::new(m20240201_000004_add_delivered_at_to_process_events::Migration),
            Box::new(m20240201_000005_create_process_event_deliveries::Migration),
            Box::new(m20240201_000006_add_gateways::Migration),
        ]
    }
}