SolarEnergy/central_backend/src/server/mod.rs

12 lines
233 B
Rust

use actix_web::web;
use crate::energy::energy_actor::EnergyActorAddr;
pub mod auth_middleware;
pub mod custom_error;
pub mod servers;
pub mod unsecure_server;
pub mod web_api;
pub type WebEnergyActor = web::Data<EnergyActorAddr>;