import config import utils # This authentication does not support any login to the web administration interface. # Use this if you only want to manage cargohold from the command line or have your # own management interface. def login(env, post): return utils.redirect(config.homepage) def get(env): return None def logout(): return False