From 5c0fd86ae1921357f80046b7f3e864f467a858fc Mon Sep 17 00:00:00 2001 From: zhihaopan Date: Wed, 31 Jul 2024 21:42:19 +0800 Subject: [PATCH] fix vscode --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index d64f154..c5d8845 100644 --- a/main.go +++ b/main.go @@ -14,11 +14,13 @@ import ( var ( address *string logPath *string + stdio *bool ) func init() { logPath = flag.String("logs", logs.DefaultLogFilePath(), "logs file path") address = flag.String("listen", "", "address on which to listen for remote connections") + stdio = flag.Bool("stdio", false, "") } func main() {