mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 14:18:04 +08:00
* Update to rust 2024 edition * Fixes * Clean up imports * Cargo fmt again --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
5 lines
149 B
Rust
5 lines
149 B
Rust
use crate::messages::portfolio::utility_types::Platform;
|
|
use std::sync::OnceLock;
|
|
|
|
pub static GLOBAL_PLATFORM: OnceLock<Platform> = OnceLock::new();
|