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

17 lines
233 B
Go

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