diff options
author | metamuffin <metamuffin@disroot.org> | 2023-10-01 00:38:29 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-10-01 00:38:29 +0200 |
commit | fc5e13ae525cb74e77a5bc51204f44476115cea9 (patch) | |
tree | a20b6d296d67735a2c8d42a0dc31b44c0bb53cb7 /base/src/lib.rs | |
parent | d546caa3f5053ade763430490911fefd6257af9f (diff) | |
download | jellything-fc5e13ae525cb74e77a5bc51204f44476115cea9.tar jellything-fc5e13ae525cb74e77a5bc51204f44476115cea9.tar.bz2 jellything-fc5e13ae525cb74e77a5bc51204f44476115cea9.tar.zst |
draft for permission framework
Diffstat (limited to 'base/src/lib.rs')
-rw-r--r-- | base/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/base/src/lib.rs b/base/src/lib.rs index b97f924..5a98be5 100644 --- a/base/src/lib.rs +++ b/base/src/lib.rs @@ -4,8 +4,10 @@ Copyright (C) 2023 metamuffin <metamuffin.org> */ #![feature(lazy_cell)] +pub mod permission; + use base64::Engine; -use jellycommon::{config::GlobalConfig, AssetLocation}; +use jellycommon::{AssetLocation, config::GlobalConfig}; use std::{fs::File, future::Future, path::PathBuf, sync::LazyLock}; use tokio::sync::Mutex; |