re-enable gifs (#244)

This commit is contained in:
Dominic Wong
2021-10-26 10:04:53 +01:00
committed by GitHub
parent abb8275370
commit f0019e576a
4 changed files with 7 additions and 4 deletions

View File

@@ -2,6 +2,9 @@ Quick and simple GIF search
# GIFs Service # GIFs Service
Add GIFs to your project with keyword search and results in multiple sizes and formats. Add GIFs to your project with keyword search and results in multiple sizes and formats.
![Powered by Giphy](https://raw.githubusercontent.com/micro/services/master/gifs/assets/PoweredBy_200px-White_HorizLogo.png)
![Powered by GIPHY](https://raw.githubusercontent.com/micro/services/master/gifs/assets/PoweredBy_200px-White_HorizLogo.png)
When integrating this API please follow GIPHY's attribution guidelines [here](https://developers.giphy.com/docs/sdk/#design-guidelines).

View File

@@ -20,7 +20,7 @@ const (
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
) )
// Search for a gif // Search for a GIF
type SearchRequest struct { type SearchRequest struct {
state protoimpl.MessageState state protoimpl.MessageState
sizeCache protoimpl.SizeCache sizeCache protoimpl.SizeCache

View File

@@ -8,7 +8,7 @@ service Gifs {
rpc Search(SearchRequest) returns (SearchResponse) {} rpc Search(SearchRequest) returns (SearchResponse) {}
} }
// Search for a gif // Search for a GIF
message SearchRequest { message SearchRequest {
// The search term // The search term
string query = 1; string query = 1;

View File