9 lines
121 B
Protocol Buffer
9 lines
121 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message Image {
|
||
|
bytes key = 1;
|
||
|
string full_url = 2;
|
||
|
string thumb_url = 3;
|
||
|
string blurhash = 4;
|
||
|
}
|