This repository has been archived on 2023-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
takahe/core/context.py

8 lines
114 B
Python
Raw Normal View History

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