mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
22 lines
367 B
Protocol Buffer
22 lines
367 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package slash.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
message ActivityShorcutCreatePayload {
|
|
int32 shortcut_id = 1;
|
|
}
|
|
|
|
message ActivityShorcutViewPayload {
|
|
int32 shortcut_id = 1;
|
|
string ip = 2;
|
|
string referer = 3;
|
|
string user_agent = 4;
|
|
map<string, ValueList> params = 5;
|
|
|
|
message ValueList {
|
|
repeated string values = 1;
|
|
}
|
|
}
|