forked from sch/Slixfeed
Upload New File
This commit is contained in:
parent
aa8c35d728
commit
b1f5a37978
1 changed files with 14 additions and 0 deletions
14
slixfeed/settings.py
Normal file
14
slixfeed/settings.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
async def get_value_default(key):
|
||||
"""
|
||||
Get settings default value.
|
||||
|
||||
:param key: "enabled", "interval", "quantum".
|
||||
:return: Integer.
|
||||
"""
|
||||
if key == "enabled":
|
||||
result = 1
|
||||
elif key == "quantum":
|
||||
result = 4
|
||||
elif key == "interval":
|
||||
result = 30
|
||||
return result
|
Loading…
Reference in a new issue