mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00

* Update to rust 2024 edition * Fixes * Clean up imports * Cargo fmt again --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
4 lines
149 B
Rust
4 lines
149 B
Rust
use crate::messages::portfolio::utility_types::Platform;
|
|
use std::sync::OnceLock;
|
|
|
|
pub static GLOBAL_PLATFORM: OnceLock<Platform> = OnceLock::new();
|