thatkingguy_auth_service 0.1.0

Example auth service for rust class
Documentation
1
2
3
4
5
6
7
8
9
use thatkingguy_auth_service::{Credentials};
fn main() {
  let credentials = Credentials {
    username: "king".to_owned(),
    password: "password".to_owned()
  };

  thatkingguy_auth_service::authenticate(credentials);
}