Files
cunicu/pkg/rpc/types.go
Steffen Vogel 3bee839348 fix: Update copyright years
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2025-01-01 22:45:39 +01:00

19 lines
304 B
Go

// SPDX-FileCopyrightText: 2023-2025 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)
}