mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-19 08:41:24 +01:00
wip: skeleton
This commit is contained in:
parent
cbdeff003d
commit
7d5795d868
3 changed files with 37 additions and 0 deletions
12
src/cli/delete_room.rs
Normal file
12
src/cli/delete_room.rs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#![warn(clippy::missing_docs_in_private_items)]
|
||||
|
||||
//! Implementation of the `delete-room` subcommand
|
||||
|
||||
use std::error::Error;
|
||||
|
||||
use super::DeleteRoomArgs;
|
||||
|
||||
/// Subcommand entrypoint
|
||||
pub(crate) async fn run(args: DeleteRoomArgs) -> Result<(), Box<dyn Error>> {
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue