1 2 3 4 5 6 7 8 9
use yeahyf_auth_service::Credentials; fn main() { let cred = Credentials { user: String::from("value"), password: String::from(""), }; yeahyf_auth_service::authenticate(cred); }