package param import "context" func GetHttpsUrl(c context.Context) string { httpsUrl := c.Value("https_url") if _, ok := httpsUrl.(string); ok { return httpsUrl.(string) } return "" }