crowdsec/pkg/types/line.go

13 lines
301 B
Go
Raw Permalink Normal View History

2020-05-15 09:39:16 +00:00
package types
import "time"
type Line struct {
Raw string `yaml:"Raw,omitempty"`
Src string `yaml:"Src,omitempty"`
Time time.Time //acquis time
Labels map[string]string `yaml:"Labels,omitempty"`
Process bool
Module string `yaml:"Module,omitempty"`
2020-05-15 09:39:16 +00:00
}