Implement announcement endpoints

This commit is contained in:
Ethan O'Brien
2024-04-15 14:01:39 -05:00
parent 9b9afecb28
commit 8f018f558a
4 changed files with 34 additions and 0 deletions

6
src/router/web.rs Normal file
View File

@ -0,0 +1,6 @@
use actix_web::{HttpResponse, HttpRequest};
pub fn announcement(_req: HttpRequest) -> HttpResponse {
HttpResponse::Ok().body("sif2 is back!")
}