Admin Next.js app handles all admin tasks directly via database access. Only health check endpoint was remaining, not worth maintaining.
20 lines
322 B
Rust
20 lines
322 B
Rust
pub mod agent;
|
|
pub mod auth;
|
|
pub mod error;
|
|
pub mod git;
|
|
pub mod issue;
|
|
pub mod openapi;
|
|
pub mod project;
|
|
pub mod pull_request;
|
|
pub mod robots;
|
|
pub mod room;
|
|
pub mod route;
|
|
pub mod search;
|
|
pub mod sidemap;
|
|
pub mod skill;
|
|
pub mod user;
|
|
pub mod workspace;
|
|
|
|
pub use error::{api_success, ApiError, ApiResponse};
|
|
pub mod dist;
|