Skip to content

Commit 010c863

Browse files
authored
Merge branch 'master' into dpebot-repositorygardener
2 parents 971a295 + dbdb4b4 commit 010c863

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

appengine/standard/endpoints/multiapi/main.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Response(messages.Message):
3434
@api_collection.api_class(resource_name='shelves')
3535
class Shelves(remote.Service):
3636

37-
@endpoints.method(Request, Response, path='list')
37+
@endpoints.method(Request, Response)
3838
def list(self, request):
3939
return Response()
4040

@@ -44,7 +44,11 @@ def list(self, request):
4444
class Books(remote.Service):
4545

4646
@endpoints.method(Request, Response, path='bookmark')
47-
def bookmark(self, request):
47+
def get_bookmark(self, request):
48+
return Response()
49+
50+
@endpoints.method(Request, Response)
51+
def best_sellers_list(self, request):
4852
return Response()
4953
# [END books]
5054
# [END multiclass]

testing/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ google-api-python-client==1.7.8
1515
google-cloud-core==0.29.1
1616
gcp-devrel-py-tools==0.0.15
1717
flask==1.0.2
18+
websocket-client==0.54.0

0 commit comments

Comments
 (0)