mirror of
https://github.com/nushell/nushell.git
synced 2025-05-31 07:08:22 +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 },
|
|
}
|