MCPcopy Create free account
hub / github.com/VSCodeConfigHelper/v4 / cli_handled

Function cli_handled

src-tauri/src/cli/mod.rs:115–131  ·  view source on GitHub ↗
(args: CliArgs)

Source from the content-addressed store, hash-verified

113}
114
115fn cli_handled(args: CliArgs) {
116 match cli(args) {
117 Ok(_) => (),
118 Err(e) => {
119 error!("{:?}", e);
120 out!(
121 "如果你认为该错误是 bug,请将 {} 文件发送到 guyutongxue@163.com。",
122 log::get_log_path().to_string()
123 )
124 }
125 }
126 #[cfg(windows)]
127 {
128 out!("按任意键退出...");
129 winapi::getch();
130 }
131}
132
133fn gui_handled() {
134 #[cfg(windows)]

Callers 1

runFunction · 0.85

Calls 2

cliFunction · 0.85
getchFunction · 0.85

Tested by

no test coverage detected