mirror of
https://github.com/nushell/nushell.git
synced 2025-05-02 09:04:30 +02:00
6 lines
84 B
Rust
6 lines
84 B
Rust
use crate::DeclId;
|
|
|
|
pub enum Exportable {
|
|
Decl { name: Vec<u8>, id: DeclId },
|
|
}
|