lighty_auth/offline.rs
1// TODO: Complete this implementation
2// struct OfflineAuthenticator {
3// username: String,
4// }
5// impl OfflineAuthenticator {
6// pub fn new(username: String) -> Self {
7// Self { username }
8// }
9//
10// pub fn authenticate(&self) -> Result<OfflineProfile> {
11// let profile = OfflineProfile::new(self.username.clone());
12// Ok(profile)
13// }
14// }