mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
11 lines
206 B
Rust
11 lines
206 B
Rust
|
|
use once_cell::sync::OnceCell;
|
||
|
|
use serde::Serialize;
|
||
|
|
|
||
|
|
#[derive(Debug, PartialEq, Eq, Serialize, Clone, Copy)]
|
||
|
|
pub enum Mode {
|
||
|
|
Dev,
|
||
|
|
Prod,
|
||
|
|
}
|
||
|
|
|
||
|
|
pub static GLOBAL_MODE: OnceCell<Mode> = OnceCell::new();
|