mirror of
https://github.com/skyle1995/NetworkAuth.git
synced 2026-05-25 02:24:05 +08:00
10 lines
175 B
Go
10 lines
175 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "networkDev/cmd"
|
||
|
|
|
||
|
|
// main 是程序的入口点
|
||
|
|
// 调用Cobra命令执行器来处理命令行参数和子命令
|
||
|
|
func main() {
|
||
|
|
cmd.Execute()
|
||
|
|
}
|