1
0

refactor: rename project name from underline to dash

This commit is contained in:
2026-04-17 14:52:13 +08:00
parent 1509723ada
commit d2bd4425df
15 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,45 @@
use crate::cli::Request;
use thiserror::Error as TeError;
/// Error occurs in this module.
#[derive(Debug, TeError)]
#[error("{0}")]
pub enum Error {
}
/// Result type used in this module.
type Result<T> = std::result::Result<T, Error>;
// region: Respective Runners
fn run_register() -> Result<()> {
todo!()
}
fn run_unregister() -> Result<()> {
todo!()
}
fn run_status() -> Result<()> {
todo!()
}
fn run_ext_link() -> Result<()> {
todo!()
}
fn run_ext_unlink() -> Result<()> {
todo!()
}
fn run_ext_list() -> Result<()> {
todo!()
}
// endregion
pub fn run(request: Request) -> Result<()> {
todo!()
}