Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
248 B · 12 lines
Go
12345678910111213package api
import "net/http"
// get rendition from query params, defaulting to "source"func getRendition(r *http.Request) string { rendition := r.URL.Query().Get("rendition") if rendition == "" { rendition = "source" } return rendition}