takahe/core/context.py

8 lines
114 B
Python
Raw Normal View History

2022-11-13 05:10:06 +00:00
from core.config import Config
2022-11-05 20:17:27 +00:00
def config_context(request):
return {
2022-11-13 05:10:06 +00:00
"config": Config.load(),
}