Files
cunicu/proto/feature/hooks.proto
Steffen Vogel 92a7ad2f7f daemon: use per-interface features
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2022-10-07 18:30:50 +02:00

17 lines
343 B
Protocol Buffer

syntax = "proto3";
package cunicu.hooks;
option go_package = "github.com/stv0g/cunicu/pkg/proto/feature/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;
}