github.com/crowdsecurity/crowdsec@v1.6.1/pkg/types/line.go (about) 1 package types 2 3 import "time" 4 5 type Line struct { 6 Raw string `yaml:"Raw,omitempty"` 7 Src string `yaml:"Src,omitempty"` 8 Time time.Time //acquis time 9 Labels map[string]string `yaml:"Labels,omitempty"` 10 Process bool 11 Module string `yaml:"Module,omitempty"` 12 }