add type len

This commit is contained in:
zu1k
2020-08-21 09:53:08 +08:00
parent 6262f510e9
commit 9f6ae0cb9b
5 changed files with 28 additions and 1 deletions

View File

@@ -26,6 +26,10 @@ func setupRouter() {
c.HTML(http.StatusOK, "index.html", gin.H{
"domain": domain,
"all_proxies_count": cache.AllProxiesCount,
"ss_proxies_count": cache.SSProxiesCount,
"ssr_proxies_count": cache.SSRProxiesCount,
"vmess_proxies_count": cache.VmessProxiesCount,
"trojan_proxies_count": cache.TrojanProxiesCount,
"useful_proxies_count": cache.UsefullProxiesCount,
})
})