pasejo 2026.4.19

passage re-implementation in Rust for teams
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: The pasejo Authors
// SPDX-License-Identifier: 0BSD

use crate::cli::constants;

pub const PASEJO_CONFIG: &str = const_str::convert_ascii_case!(
    upper,
    const_str::concat!(constants::APPLICATION_NAME, "_config")
);

pub const PASEJO_DEFAULT_STORE: &str = const_str::convert_ascii_case!(
    upper,
    const_str::concat!(constants::APPLICATION_NAME, "_default_store")
);

pub const CODEBERG_HOST: &str = "CODEBERG_HOST";
pub const GITHUB_HOST: &str = "GITHUB_HOST";
pub const GITLAB_HOST: &str = "GITLAB_HOST";