7 lines
127 B
Rust
7 lines
127 B
Rust
use actix_web::{Scope, web};
|
|
|
|
mod id;
|
|
|
|
pub fn web() -> Scope {
|
|
web::scope("/invites").service(id::get).service(id::join)
|
|
}
|