#!/usr/bin/env python

import sys
import leanda.cli

def main():
    leanda.cli.main()
    return 0

if __name__ == '__main__':
    sys.exit(main())