v2ray-core/shell/point/config/json/log.go

10 lines
158 B
Go
Raw Normal View History

2015-10-29 22:41:37 +00:00
package json
type LogConfig struct {
AccessLogValue string `json:"access"`
}
func (config *LogConfig) AccessLog() string {
return config.AccessLogValue
}