26 lines
551 B
Rust
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")
|
|
}
|