#!/usr/bin/env python3

import os
import sys

def is_packaged_app():
    """Determines if this is a packaged application."""
    try:
        sys._MEIPASS
        return True
    except AttributeError:
        return False

if not is_packaged_app():
    sys.path.extend([
        os.path.join(os.path.dirname(os.path.realpath(__file__)), '..')
    ])

import mtls

if __name__ == "__main__":
    mtls.cli()
