#!/usr/bin/env python3
"""Script to run the auacm cli app"""

import sys
from auacm import main

main.main(sys.argv[1:])
