Files
cunicu/pkg/rpc/types.go
Steffen Vogel dad8d5996b update Go module path
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-09-08 17:42:12 +02:00

16 lines
197 B
Go

package rpc
import (
"fmt"
rpcproto "github.com/stv0g/cunicu/pkg/proto/rpc"
)
type Event struct {
rpcproto.Event
}
func (e *Event) String() string {
return fmt.Sprintf("type=%s", e.Type)
}