crowdsec/pkg/types/line.go
Thibault bui Koechlin 2016167654 initial import
2020-05-15 11:39:16 +02:00

12 lines
259 B
Go

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
}