in cobra/aid/unsplash.go [154:169]
func getPhotoURLBySize(p model.UnsplashRandomPhotoParameters, r model.UnsplashRandomPhotoResponse) string {
switch p.Size {
case "thumb":
return r.Urls.Thumb
case "small":
return r.Urls.Small
case "regular":
return r.Urls.Regular
case "full":
return r.Urls.Full
case "raw":
return r.Urls.Raw
default:
return r.Urls.Small
}
}