Files
cunicu/pkg/rpc/types.go
Steffen Vogel b451dfcac3 fix: Update more copyright years
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-12-23 17:50:21 +01:00

19 lines
304 B
Go

// SPDX-FileCopyrightText: 2023-2024 Steffen Vogel <post@steffenvogel.de>
// SPDX-License-Identifier: Apache-2.0
package rpc
import (
"fmt"
rpcproto "cunicu.li/cunicu/pkg/proto/rpc"
)
type Event struct {
rpcproto.Event
}
func (e *Event) String() string {
return fmt.Sprintf("type=%s", e.Type)
}