1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

mod action;
mod adapter;
pub mod entity;
mod migration;

pub use adapter::SeaOrmAdapter;
pub use migration::{down, up};