added tapper count route and wait time for tappers in test (#226)

This commit is contained in:
RoyUP9
2021-08-22 11:38:19 +03:00
committed by GitHub
parent dba8b1f215
commit afd5757315
6 changed files with 150 additions and 79 deletions

View File

@@ -30,3 +30,7 @@ func PostTappedPods(c *gin.Context) {
api.BroadcastToBrowserClients(jsonBytes)
}
}
func GetTappersCount(c *gin.Context) {
c.JSON(http.StatusOK, providers.TappersCount)
}