auth_service007 0.1.0

Example auth services
Documentation
1
2
3
4
5
6
7
8
9
use auth_service007::{Credentials};
fn main() {
   let creds = Credentials {
       username: "letsgetrusty".to_owned(),
       password: "password123".to_owned(),
   };

   auth_service007::authenticate(creds);
}