10 lines
158 B
Go
Raw Normal View History

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