summaryrefslogtreecommitdiff
path: root/rola-utils/constants/src/common.rs
blob: 8b333e76cc7723ee1da2db9598054f3c2cec7da7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#[shared_macros::constants]
mod consts {
    /// Directory name for Rorolala metadata storage in Workdraft
    pub const DIR_DRAFT_META: &str = ".rola";

    /// Configuration file indicating the root directory of a bucket
    pub const FILE_BUCKET_ROOT_CONFIG: &str = "bucket.toml";
}

pub use consts::*;