mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-24 15:13:09 +00:00
17 lines
271 B
Protocol Buffer
17 lines
271 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;
|
|
}
|