mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 23:36:43 -05:00
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
|
|
}
|