summaryrefslogtreecommitdiff
path: root/steamrelationships/constants.py
diff options
context:
space:
mode:
authorNW/RL <NWRL@dabikers.online>2024-04-01 23:31:19 -0500
committerNW/RL <NWRL@dabikers.online>2024-04-01 23:31:19 -0500
commite69456f7d063157c8926ca3c2cd485b8573f6bf3 (patch)
tree87f3b3f76f34441c963692352c9d697fb42c8682 /steamrelationships/constants.py
parente667602620a51576e354de24d0b5b90b726dab9f (diff)
Reimplement (a non-robust) basic scan
Diffstat (limited to 'steamrelationships/constants.py')
-rw-r--r--steamrelationships/constants.py10
1 files changed, 9 insertions, 1 deletions
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):
9class _Const(object): 9class _Const(object):
10 @constant 10 @constant
11 def STEAMAPI_MAXREQ() -> int: 11 def STEAMAPI_MAXREQ() -> int:
12 return 100000 \ No newline at end of file 12 return 100000
13
14 @constant
15 def DAY_IN_NANO() -> int:
16 return (8.64 * (10 ** 13))
17
18 @constant
19 def JSON_INDENT() -> int:
20 return 4 \ No newline at end of file