mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 04:10:25 +08:00
10 lines
286 B
Go
10 lines
286 B
Go
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package serverconfigs
|
|
|
|
// AccessLogTCPStorageConfig TCP存储策略
|
|
type AccessLogTCPStorageConfig struct {
|
|
Network string `yaml:"network" json:"network"` // tcp, unix
|
|
Addr string `yaml:"addr" json:"addr"`
|
|
}
|