You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
memos/proto/store/webhook.proto

24 lines
285 B
Protocol Buffer

syntax = "proto3";
package memos.store;
import "store/common.proto";
option go_package = "gen/store";
message Webhook {
int32 id = 1;
int64 created_ts = 2;
int64 updated_ts = 3;
int32 creator_id = 4;
RowStatus row_status = 5;
string name = 6;
string url = 7;
}