vanten-s.com/frontend/src/commands/clear.rs

6 lines
88 B
Rust
Raw Normal View History

2025-03-16 14:16:03 +01:00
use super::Environment;
pub fn clear(env: Environment) {
env.handle.set(vec![]);
}