Add status handler to ensure we kick out API servers that are blocked

This commit is contained in:
Tyler
2019-06-12 19:03:38 -04:00
parent 80306bfe85
commit ede215888a
5 changed files with 285 additions and 12 deletions

View File

@ -0,0 +1,11 @@
package validator
import "testing"
func Test_Validator(t *testing.T) {
err := ValidateEndpoint()
if err != nil {
t.Fatal(err)
}
}