Files
cunicu/pkg/socket/types.go
2021-12-22 20:43:51 +01:00

16 lines
168 B
Go

package socket
import (
"fmt"
"riasc.eu/wice/pkg/pb"
)
type Event struct {
pb.Event
}
func (e *Event) String() string {
return fmt.Sprintf("type=%s", e.Type)
}