docs: partially document codebase
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
Should make it easier for frontend to figure out what stuff actually does, more will be added as the project goes on
This commit is contained in:
parent
1aa38631b8
commit
16ccf94631
10 changed files with 226 additions and 18 deletions
|
@ -1,3 +1,5 @@
|
|||
//! `/api` Contains the entire API
|
||||
|
||||
use actix_web::Scope;
|
||||
use actix_web::web;
|
||||
|
||||
|
@ -5,5 +7,5 @@ mod v1;
|
|||
mod versions;
|
||||
|
||||
pub fn web() -> Scope {
|
||||
web::scope("/api").service(v1::web()).service(versions::res)
|
||||
web::scope("/api").service(v1::web()).service(versions::get)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue