restapi 1.1.14

A secure-by-default rest api using hyper, tokio, bb8, kafka-threadpool, postgres, and prometheus for monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Modules for managing all user activities and state
//!
pub mod consume_user_otp;
pub mod create_otp;
pub mod create_user;
pub mod delete_user;
pub mod get_user;
pub mod is_verification_enabled;
pub mod is_verification_required;
pub mod search_user_data;
pub mod search_users;
pub mod update_user;
pub mod update_user_data;
pub mod upload_user_data;
pub mod upsert_user_verification;
pub mod verify_user;