rvault/src/engines/kv/meta.rs
C0ffeeCode 7949d64649
Chore: Rename DatabaseDriver to DbPool
and add a custom serde serializer `serialize_reject_none` as a utility
2025-03-26 21:39:07 +01:00

26 lines
551 B
Rust

use crate::storage::DbPool;
use axum::extract::{Path, State};
pub async fn delete_path() -> &'static str {
todo!("not implemented")
}
pub async fn destroy_path() -> &'static str {
todo!("not implemented")
}
pub async fn get_meta() -> &'static str {
todo!("not implemented")
}
pub async fn post_meta(
State(pool): State<DbPool>,
Path((mount_path, kv_path)): Path<(String, String)>,
body: String,
) -> &'static str {
todo!("not implemented")
}
pub async fn delete_meta() -> &'static str {
todo!("not implemented")
}