mirror of
https://github.com/nushell/nushell.git
synced 2025-07-31 06:32:43 +02:00
7 lines
140 B
Rust
7 lines
140 B
Rust
use crate::{DeclId, ModuleId};
|
|
|
|
pub enum Exportable {
|
|
Decl { name: Vec<u8>, id: DeclId },
|
|
Module { name: Vec<u8>, id: ModuleId },
|
|
}
|