feat(service): started service

This commit is contained in:
grimhilt
2024-09-14 21:33:11 +02:00
parent cd7b225145
commit e780279acd
15 changed files with 202 additions and 45 deletions

13
src/subcommands/test.rs Normal file
View File

@@ -0,0 +1,13 @@
use clap::{Arg, ArgAction, ArgMatches, Command};
use crate::commands;
use crate::commands::test::TestArgs;
use crate::config::config::Config;
pub fn create() -> Command {
Command::new("test").about("Test command")
}
pub fn handler(args: &ArgMatches) {
commands::test::exec(TestArgs {}, Config::new());
}