Move ChannelList, UserStore into client crate

Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Max Brunsfeld 2021-10-04 17:30:11 -07:00
parent 94209d2b6d
commit bbb27b9654
15 changed files with 83 additions and 76 deletions

View file

@ -10,11 +10,11 @@ use std::{fs, path::PathBuf, sync::Arc};
use zed::{
self,
assets::Assets,
channel::ChannelList,
chat_panel, client, editor, file_finder,
chat_panel, client,
client::{http, ChannelList, UserStore},
editor, file_finder,
fs::RealFs,
http, language, menus, project_panel, settings, theme_selector,
user::UserStore,
language, menus, project_panel, settings, theme_selector,
workspace::{self, OpenNew, OpenParams, OpenPaths},
AppState,
};