增加使用系统默认浏览器打开连接方法

This commit is contained in:
2023-04-09 19:06:07 +08:00
parent 5cfbbbb832
commit 0a75d06083
2 changed files with 42 additions and 0 deletions

View File

@@ -40,6 +40,8 @@ var (
UserAgent *userAgent
// Console 控制台输出数据
Console *console
// Browser 浏览器操作实例
Browser *browser
)
func init() {
@@ -61,4 +63,11 @@ func init() {
list: defaultUserAgentList,
}
Console = &console{}
Browser = &browser{
commandTable: map[string]string{
"windows": "start",
"darwin": "open",
"linux": "xdg-open",
},
}
}