1 // Package examples is an embedded jsonl format of a collection of events 2 // intended to be used to test an event codec. 3 package examples 4 5 import ( 6 _ "embed" 7 ) 8 9 //go:embed out.jsonl 10 var Cache []byte 11