14 lines
238 B
Rust
14 lines
238 B
Rust
|
pub struct Authenticator {
|
||
|
// TODO
|
||
|
}
|
||
|
|
||
|
impl Authenticator {
|
||
|
pub fn new(/* database credentials ? */) -> Self {
|
||
|
Self {}
|
||
|
}
|
||
|
|
||
|
pub fn create_user_token(username: &str, password: &str) -> String {
|
||
|
todo!()
|
||
|
}
|
||
|
}
|