8 lines
210 B
Rust
8 lines
210 B
Rust
#[allow(unreachable_code)]
|
|
pub async fn inbox_handler() {
|
|
todo!("pre-validation hook");
|
|
todo!("validate signature");
|
|
todo!("post-validation hook");
|
|
todo!("database storage");
|
|
todo!("post-storage hook");
|
|
}
|