mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-21 16:56:27 -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
|
||
|
}
|