Spaces:
Sleeping
Sleeping
File size: 432 Bytes
582bf6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# config/__init__.py
"""Configuration module for TriviaVerse"""
from .settings import *
from .themes import *
__all__ = [
"APP_NAME",
"APP_VERSION",
"APP_DESCRIPTION",
"WIKIPEDIA_API",
"WIKIDATA_API",
"WIKIBOOKS_API",
"WIKI_REST_API",
"DIFFICULTY_LEVELS",
"QUESTIONS_PER_QUIZ",
"BASE_POINTS",
"BADGES",
"ACHIEVEMENTS",
"THEMES",
"MOBILE_BREAKPOINT",
]
|