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