mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
22 lines
370 B
Go
22 lines
370 B
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package teaconst
|
|
|
|
import "github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
|
|
|
var (
|
|
// 流量统计
|
|
|
|
InTrafficBytes = uint64(0)
|
|
OutTrafficBytes = uint64(0)
|
|
|
|
NodeId int64 = 0
|
|
NodeIdString = ""
|
|
|
|
GlobalProductName = nodeconfigs.DefaultProductName
|
|
|
|
// Track
|
|
|
|
EnableDBStat = false
|
|
)
|