Skip to content

Commit 61c5356

Browse files
committed
fix clients folder naming
1 parent 9c879f2 commit 61c5356

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

moly-mini/src/demo_chat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use makepad_widgets::*;
2-
use moly_widgets::repos::moly::*;
2+
use moly_widgets::clients::moly::*;
33
use moly_widgets::utils::asynchronous::spawn;
44
use moly_widgets::{protocol::*, ChatTask, ChatWidgetExt};
55

moly-widgets/src/clients.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mod moly;
1+
pub mod moly;
File renamed without changes.

moly-widgets/src/lib.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use makepad_widgets::Cx;
22

33
mod avatar;
44

5+
pub mod clients;
56
mod message_loading;
67
mod message_markdown;
78
pub mod messages;
@@ -19,9 +20,6 @@ pub mod chat;
1920
#[cfg(any(feature = "async-rt", feature = "async-web"))]
2021
pub use chat::*;
2122

22-
#[cfg(feature = "repos")]
23-
pub mod repos;
24-
2523
pub fn live_design(cx: &mut Cx) {
2624
makepad_code_editor::live_design(cx);
2725
message_markdown::live_design(cx);

0 commit comments

Comments
 (0)