From e69456f7d063157c8926ca3c2cd485b8573f6bf3 Mon Sep 17 00:00:00 2001 From: NW/RL Date: Mon, 1 Apr 2024 23:31:19 -0500 Subject: Reimplement (a non-robust) basic scan --- steamrelationships/constants.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'steamrelationships/constants.py') diff --git a/steamrelationships/constants.py b/steamrelationships/constants.py index af35733..cf52151 100644 --- a/steamrelationships/constants.py +++ b/steamrelationships/constants.py @@ -9,4 +9,12 @@ def constant(f): class _Const(object): @constant def STEAMAPI_MAXREQ() -> int: - return 100000 \ No newline at end of file + return 100000 + + @constant + def DAY_IN_NANO() -> int: + return (8.64 * (10 ** 13)) + + @constant + def JSON_INDENT() -> int: + return 4 \ No newline at end of file -- cgit v1.2.3