mirror of https://github.com/v2ray/v2ray-core
10 lines
158 B
Go
10 lines
158 B
Go
![]() |
package json
|
||
|
|
||
|
type LogConfig struct {
|
||
|
AccessLogValue string `json:"access"`
|
||
|
}
|
||
|
|
||
|
func (config *LogConfig) AccessLog() string {
|
||
|
return config.AccessLogValue
|
||
|
}
|