File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,9 +15,15 @@ router.get('/', (ctx) => {
1515 'Getting random dog image' : {
1616 'route' : '/dog/get-random' ,
1717 'example' : 'http://localhost:3011/dog/get-random' } ,
18- 'Getting random images by breed ' : {
18+ 'Getting random images for dogs with sub-breeds ' : {
1919 'route' : '/dog/:breed/:subBreed/get-images/:amount' ,
20- 'example' : 'http://localhost:3011/dog/retriever/golden/get-images/50' }
20+ 'example' : 'http://localhost:3011/dog/retriever/golden/get-images/50' } ,
21+ 'Getting random images by breed (no sub-breeds)' : {
22+ 'route' : '/dog/:breed/get-images/:amount' ,
23+ 'example' : 'http://localhost:3011/dog/germanshepherd/get-images/25' } ,
24+ 'Get all available breed names' : {
25+ 'route' : '/breeds' ,
26+ 'example' : 'http://localhost:3011/breeds' }
2127 } } ;
2228} ) ;
2329
You can’t perform that action at this time.
0 commit comments