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, 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") }