mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-07 02:57:34 +00:00
There may have been a good reason for the difference at some point, or I was still learning Rust. But now it's just &mut AppContext vs &AppContext.
7 lines
129 B
Rust
7 lines
129 B
Rust
mod select;
|
|
|
|
pub use select::{ItemType, Select, SelectStyle};
|
|
|
|
pub fn init(cx: &mut super::AppContext) {
|
|
select::init(cx);
|
|
}
|