grooveondemand/groove/auth.py

8 lines
236 B
Python
Raw Normal View History

import logging
import os
def is_authenticated(username, password):
logging.debug(f"Authentication attempt for {username}, {password}")
return (username == os.environ.get('USERNAME') and password == os.environ.get('PASSWORD'))