mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-23 08:46:28 +00:00
Nicco
cacb808117
* restructuring * pin svelte kit version & parallel execution * update svelte kit * correct test result assets * add timeout * correct locale path * simplify crypto * fix for #58 * add verbosity flag * disable flaky test
13 lines
228 B
Rust
13 lines
228 B
Rust
use actix_web::web;
|
|
|
|
use crate::note;
|
|
use crate::status;
|
|
|
|
pub fn init(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(
|
|
web::scope("/api")
|
|
.service(note::init())
|
|
.service(status::init()),
|
|
);
|
|
}
|