1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-21 16:56:27 -05:00
v2fly/shell/point/config/json/log.go

10 lines
158 B
Go
Raw Normal View History

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