Files
advotracker_db/src/functions.rs
Ralf Zerres 9c0dbc5c13 database library
* 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>
2019-11-19 00:30:53 +01:00

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;