实现基本的访问日志策略

This commit is contained in:
GoEdgeLab
2021-07-29 16:51:11 +08:00
parent 630ff31fdd
commit 5e494dd932
11 changed files with 1263 additions and 121 deletions

View File

@@ -0,0 +1,9 @@
// Copyright 2021 Liuxiangchao iwind.liu@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"`
}