Files
monibuca/pkg/event.go
2024-03-28 20:39:50 +08:00

8 lines
64 B
Go

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