adding the local trip form
This commit is contained in:
parent
0c692b3197
commit
9e5acd6aa5
6 changed files with 596 additions and 1 deletions
|
@ -6,6 +6,7 @@ use actix_multipart::form::tempfile::TempFileConfig;
|
|||
use actix_web::{middleware, App, HttpServer};
|
||||
use api::church_form::church_form;
|
||||
use api::health_form::health_form;
|
||||
use api::local_trip_form::local_form;
|
||||
use api::mt_form::mt_form;
|
||||
use api::parent_form::parent_form;
|
||||
use api::teacher_form::teacher_form;
|
||||
|
@ -46,6 +47,7 @@ async fn main() -> std::io::Result<()> {
|
|||
.service(parent_form)
|
||||
.service(teacher_form)
|
||||
.service(church_form)
|
||||
.service(local_form)
|
||||
})
|
||||
.bind(("127.0.0.1", 4242))?
|
||||
.workers(2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue