1
2
3
4
5
6
7
8
9
10
//! # uobors_infrastructure_database_seaorm library
//!
//! This library contains the database logic of the uobors project using SeaORM.

pub mod entities;
pub mod migrator;

pub fn hello() {
    println!("Hello, world");
}