github.com/mantzas/incata@v0.3.0/writer/writer.go (about) 1 package writer 2 3 import "github.com/mantzas/incata/model" 4 5 // Writer Interface for writing events to storage 6 type Writer interface { 7 Write(model.Event) error 8 }