英文: Creating sub-commands with the same name in Go w/ Cobra 问题 我对Go和Cobra都非常陌生,这是我在Cobra中的第一个项目。 使用C...
GoLang是否有命令行界面(CLI)?
英文: Is there a CLI (Command Line Interface) for GoLang? 问题 作为你的中文翻译,以下是翻译好的内容: 完全是一个新手的 Golang 用户,我没...
在命令行界面应用程序中控制箭头键。
英文: Control arrow keys in CLI app 问题 我想要构建一个(golang)库,为用户选择提供多个选项。我的想法是打印选项的名称,并将其中一个突出显示为“活动”。当按下箭头...
如何从goroutine中结束一个Go程序
英文: How to end a go program from a goroutine 问题 我正在尝试在使用Go编写的命令行界面中实现一些非典型的行为。 我有一个长时间运行的函数,并且我希望在某人...
为什么以下的导入语句不起作用?
英文: Why isn't the following import working? 问题 为什么以下代码可以正常工作: package main import ( "os"...
`go test` CLI测试报告器的推荐
英文: Recommendation for `go test` CLI test reporter 问题 我计划使用Go语言的testing包和go test来编写单元测试。我发现go test只能...
如何遍历一个列表并使用goterm包绘制表格?
英文: How to iterate over a list and draw a table with the goterm package? 问题 我正在尝试使用goterm进行快速原型设计。我有...
无法测试 Golang 命令行工具的输出。
英文: Unable to test a Golang CLI tool's output 问题 我有一个用Go编写的命令行工具,产生以下输出: Command: config get Env...
从Codegansta CLI获取标志值
英文: Get flag value from Codegansta CLI 问题 我正在使用Go编写一个命令行应用程序,并希望将Redis端点指定为标志。我已经添加了以下内容: app.Flags ...
Creating a CLI: What should I do with the password in the config file (and how)?
英文: Creating a CLI: What should I do with the password in the config file (and how)? 问题 我正在使用Go编写一个C...
11