soph-database 0.31.0

The RUST Framework for Web Rustceans.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Database;
use sea_orm::DatabaseConnection;
use soph_core::traits::*;

mod database;
mod instance;

pub fn db() -> &'static DatabaseConnection {
    Database::facade().connection()
}