Files
material-api/web/commons/helpers/auth.py

10 lines
182 B
Python
Raw Normal View History

2024-05-29 10:21:31 +08:00
from functools import wraps
def basic_auth_required(f):
@wraps(f)
def decorated_function(*args, **kwargs):
return f(*args, **kwargs)
return decorated_function