1
2
3
4
5
6
7
8
9
10
//! Constants that are shared between other crates in this workspace.
//! Crate-specific constants should go in their respective crates.

pub const LOCAL_SERVER_URI: &str = "https://localhost:1113";

pub const ACCOUNT_NAME: &str = "account_name";
pub const ACTION: &str = "action";
pub const KEY_ID: &str = "key_id";
pub const METADATA: &str = "metadata";
pub const USER_ID: &str = "user_id";