add: postgres support

chore: restructure
This commit is contained in:
trisua 2025-03-22 22:17:47 -04:00
parent cda879f6df
commit b6fe2fba37
58 changed files with 3403 additions and 603 deletions

View file

@ -1,17 +0,0 @@
use axum::response::IntoResponse;
/// `/css/style.css`
pub async fn style_css_request() -> impl IntoResponse {
(
[("Content-Type", "text/css")],
crate::data::assets::STYLE_CSS,
)
}
/// `/js/atto.js`
pub async fn atto_js_request() -> impl IntoResponse {
(
[("Content-Type", "text/javascript")],
crate::data::assets::ATTO_JS,
)
}