backend/src/api/mod.rs
2025-05-04 22:13:05 +02:00

11 lines
175 B
Rust

use actix_web::Scope;
use actix_web::web;
mod v1;
mod versions;
pub fn web() -> Scope {
web::scope("/api")
.service(v1::web())
.service(versions::res)
}