diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-21 23:30:19 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-21 23:30:19 +0200 |
commit | 4555531d2cb4856d6216907a22aac6797d097ad2 (patch) | |
tree | 9011bcdb37b8a314d4772bae905c4c920c88e565 /src/modules/auth/mod.rs | |
parent | 0cd6ddac0833c7fc6d2fb8511073132006072148 (diff) | |
download | gnix-4555531d2cb4856d6216907a22aac6797d097ad2.tar gnix-4555531d2cb4856d6216907a22aac6797d097ad2.tar.bz2 gnix-4555531d2cb4856d6216907a22aac6797d097ad2.tar.zst |
first steps torwards openid auth
Diffstat (limited to 'src/modules/auth/mod.rs')
-rw-r--r-- | src/modules/auth/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/auth/mod.rs b/src/modules/auth/mod.rs index 729ea42..80d02ad 100644 --- a/src/modules/auth/mod.rs +++ b/src/modules/auth/mod.rs @@ -12,6 +12,7 @@ use std::{collections::HashMap, fmt, fs::read_to_string}; pub mod basic; pub mod cookie; +pub mod openid; struct Credentials { wrong_user: PasswordHashString, |