takahe/core/context.py

8 lines
114 B
Python
Raw Normal View History

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