fix, gitignore

master
Dmitrii M 3 years ago
parent e7a907c77c
commit 486b775f29

1
.gitignore vendored

@ -0,0 +1 @@
.env

@ -7,7 +7,8 @@ from requests import get
def dl_ul_handler(value: float, threshold: float):
return (value / 1000000, value > threshold)
value /= 1000000
return (value, value > threshold)
def ping_handler(value: float, threshold: float):

Loading…
Cancel
Save