fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#[derive(PartialEq, Clone)]
|
||||
#[derive(Debug, PartialEq, Clone)]
|
||||
pub enum AppScreen {
|
||||
Loading,
|
||||
Auth,
|
||||
|
||||
9
src/lib.rs
Normal file
9
src/lib.rs
Normal file
@@ -0,0 +1,9 @@
|
||||
// Library interface for tele-tui
|
||||
// This allows tests to import modules
|
||||
|
||||
pub mod app;
|
||||
pub mod config;
|
||||
pub mod input;
|
||||
pub mod tdlib;
|
||||
pub mod ui;
|
||||
pub mod utils;
|
||||
@@ -4,4 +4,10 @@ pub use client::TdClient;
|
||||
pub use client::UserOnlineStatus;
|
||||
pub use client::NetworkState;
|
||||
pub use client::ProfileInfo;
|
||||
pub use client::ChatInfo;
|
||||
pub use client::MessageInfo;
|
||||
pub use client::ReactionInfo;
|
||||
pub use client::ReplyInfo;
|
||||
pub use client::ForwardInfo;
|
||||
pub use client::FolderInfo;
|
||||
pub use tdlib_rs::enums::ChatAction;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
mod loading;
|
||||
mod auth;
|
||||
mod main_screen;
|
||||
mod chat_list;
|
||||
mod messages;
|
||||
pub mod chat_list;
|
||||
pub mod messages;
|
||||
mod footer;
|
||||
pub mod profile;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user