fix slashes

This commit is contained in:
kiriharu 2021-01-05 01:29:29 +03:00
parent 10759e0219
commit ab49ad92b0
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ icmp_help_message = """
class ICMPCheckerHandler(CheckerBaseHandler):
help_message = icmp_help_message
api_endpoint = "/icmp"
api_endpoint = "icmp"
def __init__(self):
super(ICMPCheckerHandler, self).__init__()

View File

@ -17,7 +17,7 @@ invalid_port = """❗Неправильный порт. Напишите /tcp ч
class TCPCheckerHandler(CheckerBaseHandler):
help_message = tcp_help_message
api_endpoint = "/tcp_port"
api_endpoint = "tcp_port"
def __init__(self):
super().__init__()

View File

@ -17,7 +17,7 @@ invalid_port = """❗Неправильный порт. Напишите /web ч
class WebCheckerHandler(CheckerBaseHandler):
help_message = web_help_message
api_endpoint = "/http"
api_endpoint = "http"
def __init__(self):
super().__init__()