Skip to content

Commit b911dab

Browse files
committed
refactor: s/tasks/generators
1 parent aa40baf commit b911dab

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ pub mod handlers;
66
pub mod listener;
77
pub mod nu;
88
pub mod store;
9-
pub mod tasks;
9+
pub mod generators;
1010
pub mod trace;

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ async fn serve(args: CommandServe) -> Result<(), Box<dyn std::error::Error + Sen
214214
let store = store.clone();
215215
let engine = engine.clone();
216216
tokio::spawn(async move {
217-
let _ = xs::tasks::serve(store, engine).await;
217+
let _ = xs::generators::serve(store, engine).await;
218218
});
219219
}
220220

0 commit comments

Comments
 (0)