# # Copyright 2015 (c) Anna Schumaker # from . import api from . import auth from . import channels import sys # # Verify connection and setup team information. # if api.test() == False: print("Connection error, cannot continue.") sys.exit(1) __auth = auth.test() if __auth == None: sys.exit(1) __TEAM = __auth["team"] def team(): return __TEAM