8 lines
114 B
Python
8 lines
114 B
Python
from core.config import Config
|
|
|
|
|
|
def config_context(request):
|
|
return {
|
|
"config": Config.load(),
|
|
}
|