mirror of
https://github.com/lune-org/lune.git
synced 2025-04-10 21:40:54 +01:00
6 lines
157 B
Rust
6 lines
157 B
Rust
use crate::library::StandardLibrary;
|
|
use std::collections::HashMap;
|
|
|
|
pub struct RequireStorage<'a> {
|
|
stds: HashMap<&'a str, Box<dyn StandardLibrary>>,
|
|
}
|