Files
material-api/web/commons/helpers/auth.py
2024-05-29 10:21:31 +08:00

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