mirror of
https://codeberg.org/cunicu/cunicu.git
synced 2025-10-05 08:47:03 +08:00
17 lines
343 B
Protocol Buffer
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;
|
|
} |