Files
advotracker_db/src/functions/mod.rs
Ralf Zerres dffac8ead2 update functions
* introduce async handling
* use r2d2 as connection handler

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
2021-05-21 12:02:51 +02:00

25 lines
453 B
Rust

/*
* advotracker - Hotline tackingtool for Advocats
*
* Copyright 2019 Ralf Zerres <ralf.zerres@networkx.de>
* SPDX-License-Identifier: (0BSD or MIT)
*/
/// module handling configuratio of database
pub mod config;
/// module handling harms
pub mod harms;
/// module handling roles
pub mod roles;
/// module handling user roles
pub mod user_roles;
/// module handling users
pub mod users;
/// module handling functionalty tests
pub mod tests;