github.com/mantzas/incata@v0.3.0/reader/reader.go (about) 1 package reader 2 3 import ( 4 "github.com/mantzas/incata/model" 5 "github.com/satori/go.uuid" 6 ) 7 8 // Reader interface for getting events 9 type Reader interface { 10 Read(uuid.UUID) ([]model.Event, error) 11 }