wip: skeleton

This commit is contained in:
Charles Hall 2024-10-22 16:13:50 -07:00
parent cbdeff003d
commit 7d5795d868
No known key found for this signature in database
GPG key ID: 7B8E0645816E07CF
3 changed files with 37 additions and 0 deletions

12
src/cli/delete_room.rs Normal file
View 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(())
}