工具实例化

This commit is contained in:
白茶清欢 2023-08-10 14:36:38 +08:00
parent 054b4e08f3
commit 5a676c3c0b
1 changed files with 34 additions and 0 deletions

34
util/init.go Normal file
View File

@ -0,0 +1,34 @@
// Package util ...
//
// Description : util ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-08-10 14:34
package util
var (
// UserAgent ...
UserAgent *userAgent
// Browser ...
Browser *browser
// IP ...
IP *ip
// URL ...
URL *ownURL
)
func init() {
UserAgent = &userAgent{
list: defaultUserAgentList,
}
Browser = &browser{
commandTable: map[string]string{
"windows": "start",
"darwin": "open",
"linux": "xdg-open",
},
}
IP = &ip{}
URL = &ownURL{}
}