10 lines
182 B
Python
10 lines
182 B
Python
![]() |
from functools import wraps
|
||
|
|
||
|
|
||
|
def basic_auth_required(f):
|
||
|
@wraps(f)
|
||
|
def decorated_function(*args, **kwargs):
|
||
|
return f(*args, **kwargs)
|
||
|
|
||
|
return decorated_function
|