takahe/core/context.py

8 wiersze
114 B
Python
Czysty Zwykły widok Historia

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(),
}