Files
cunicu/proto/feat/hooks.proto
Steffen Vogel 672770022c second batch of project name changes
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-09-08 17:42:12 +02:00

17 lines
340 B
Protocol Buffer

syntax = "proto3";
package cunicu.hooks;
option go_package = "github.com/stv0g/cunicu/pkg/proto/feat/hooks";
import "core/interface.proto";
import "core/peer.proto";
import "rpc/event.proto";
message WebHookBody {
rpc.EventType type = 1;
core.Interface interface = 2;
core.Peer peer = 3;
repeated string modified = 4;
}