add return clause + update todo

This commit is contained in:
Reid 2023-08-30 16:57:11 -07:00
parent 3cbf22cb83
commit 609c00fca1
Signed by: reidlab
GPG key ID: 6C9EAA3364F962C8
2 changed files with 3 additions and 3 deletions

View file

@ -36,4 +36,3 @@ _these features are implemented_
- find out why the last user's colors in getusers are broken???? (might be rubrub issue !!)
- move authorization logic to (./src/helpers/accounts.rs)[./src/helpers/accounts.rs]
- make gjp2 authentication faster (bcrypt?)

View file

@ -30,5 +30,6 @@ impl Config {
pub static CONFIG: LazyLock<Config> = LazyLock::new(|| {
let config = Config::load_from_file("config.toml");
config
return config;
});