1
0

finish server - nodebug

This commit is contained in:
2021-02-07 13:44:16 +08:00
parent cd53c42e23
commit c7f8c632ee
4 changed files with 208 additions and 16 deletions

View File

@@ -42,4 +42,10 @@ def GetTokenExpireOn():
def Str2Bool(strl):
return strl.lower() == 'true'
def GCD(a, b):
return math.gcd(a, b)
def LCM(a, b):
return a * b / GCD(a, b)