mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-01-23 19:00:24 +08:00
20 lines
435 B
Go
20 lines
435 B
Go
// Package global
|
|
// @Link https://github.com/bufanyun/hotgo
|
|
// @Copyright Copyright (c) 2023 HotGo CLI
|
|
// @Author Ms <133814250@qq.com>
|
|
// @License https://github.com/bufanyun/hotgo/blob/master/LICENSE
|
|
package global
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
var (
|
|
// RootPtah 运行根路径
|
|
RootPtah string
|
|
// SysType 操作系统类型 windows | linux
|
|
SysType = runtime.GOOS
|
|
// Blacklists 黑名单列表
|
|
Blacklists map[string]struct{}
|
|
)
|