Move lights and info tasks to module

This commit is contained in:
2022-09-30 21:17:02 +02:00
parent d2054caf69
commit 62887371c9
5 changed files with 151 additions and 134 deletions

5
backend/src/tasks/mod.rs Normal file
View File

@ -0,0 +1,5 @@
pub mod info;
pub mod lights;
pub use info::info_task;
pub use lights::lights_task;