feat: scaffold projet supervision-rs

This commit is contained in:
oussi
2026-04-07 11:29:01 +02:00
commit cfbc1c5606
12 changed files with 59 additions and 0 deletions

1
src/alerter.rs Normal file
View File

@@ -0,0 +1 @@
// Alerter module — Task 3

1
src/config.rs Normal file
View File

@@ -0,0 +1 @@
// Config module — Task 2

9
src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
mod config;
mod monitor;
mod alerter;
mod user_monitor;
mod routes;
fn main() {
println!("Supervision");
}

1
src/monitor.rs Normal file
View File

@@ -0,0 +1 @@
// Monitor module — Task 4

1
src/routes/alerts.rs Normal file
View File

@@ -0,0 +1 @@
// Alerts routes — Task 10

1
src/routes/auth.rs Normal file
View File

@@ -0,0 +1 @@
// Auth routes — Task 7

1
src/routes/dashboard.rs Normal file
View File

@@ -0,0 +1 @@
// Dashboard routes — Task 8

5
src/routes/mod.rs Normal file
View File

@@ -0,0 +1,5 @@
pub mod auth;
pub mod dashboard;
pub mod settings;
pub mod alerts;
pub mod users;

1
src/routes/settings.rs Normal file
View File

@@ -0,0 +1 @@
// Settings routes — Task 9

1
src/routes/users.rs Normal file
View File

@@ -0,0 +1 @@
// Users routes — Task 11

1
src/user_monitor.rs Normal file
View File

@@ -0,0 +1 @@
// UserMonitor module — Task 5