mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 03:54:15 +00:00
10 lines
266 B
Python
10 lines
266 B
Python
from .settings import app_settings, get_settings
|
|
|
|
|
|
class AppSettingsMiddleware(object):
|
|
def __init__(self, get_response):
|
|
self.get_response = get_response
|
|
|
|
def __call__(self, request):
|
|
get_settings()
|
|
return self.get_response(request)
|