* introduce generic functions for db connection * introduce CRUD functions for each database table * now-* -> Create * get-* -> Read * set-* -> Update * remove-* -> Delete * introduce source for function tests Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
16 lines
305 B
Rust
16 lines
305 B
Rust
/*
|
|
* advotracker - Hotline tackingtool for Advocats
|
|
*
|
|
* Copyright 2019 Ralf Zerres <ralf.zerres@networkx.de>
|
|
* SPDX-License-Identifier: (0BSD or MIT)
|
|
*/
|
|
|
|
// table specific functions
|
|
pub mod db_connection;
|
|
pub mod harms;
|
|
pub mod roles;
|
|
pub mod user_roles;
|
|
pub mod users;
|
|
//pub mod wip;
|
|
pub mod tests;
|