2022-08-12 01:41:18 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2022-08-14 21:05:12 +00:00
|
|
|
enum Format {
|
|
|
|
WEBP = 0;
|
|
|
|
AVIF = 1;
|
|
|
|
JPG = 2;
|
|
|
|
PNG = 3;
|
|
|
|
GIF = 4;
|
|
|
|
}
|
|
|
|
|
2022-08-12 01:41:18 +00:00
|
|
|
message Image {
|
|
|
|
bytes key = 1;
|
|
|
|
string full_url = 2;
|
|
|
|
string thumb_url = 3;
|
|
|
|
string blurhash = 4;
|
2022-08-14 21:05:12 +00:00
|
|
|
Format format = 5;
|
2022-11-09 22:45:21 +00:00
|
|
|
uint32 width = 6;
|
|
|
|
uint32 height = 7;
|
2022-08-12 01:41:18 +00:00
|
|
|
}
|