修改file

This commit is contained in:
2022-05-14 14:27:40 +08:00
parent a3186886fc
commit d1e81f6f08
2 changed files with 40 additions and 12 deletions

20
init.go Normal file
View File

@ -0,0 +1,20 @@
// Package util ...
//
// Description : util ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2022-05-14 14:22
package util
var (
// Cli ...
Cli *cli
// File ...
File *file
)
func init() {
Cli = &cli{}
File = &file{}
}