Files
monibuca/pkg/event.go
2024-07-26 10:21:10 +08:00

7 lines
63 B
Go

package pkg
type Event[T any] struct {
Type string
Data T
}