You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lntop/events/events.go

16 lines
208 B
Go

package events
const (
InvoiceCreated = "invoice.created"
InvoiceSettled = "invoice.settled"
)
type Event struct {
Type string
ID string
}
func New(kind string) *Event {
return &Event{Type: kind}
}