in ees_microsoft_outlook/cli.py [0:0]
def main(args=None):
"""Entry point for the connector."""
if args is None:
parser = _parser()
args = parser.parse_args()
if args.cmd == CMD_BOOTSTRAP and args.user:
args.password = getpass.getpass(prompt="Password: ", stream=None)
if not args.config_file:
args.config_file = os.path.join(
os.path.expanduser("~"),
".local",
"config",
"microsoft_outlook_connector.yml",
)
run(args)