package event type Event struct { Command string `json:"command"` RequestID string `json:"request_id"` } func NewEvent(command, reqID string) *Event { em := new(Event) em.Command = command em.RequestID = reqID return em }