multiple option

here is more options in one function

import cliflect
console=cliflect.console()
@console.cmd('-h', 'help', 'h')
def help_(arg):
        console.echo('you entered help option')
console.run()

just like β€˜or’

in command line

$ python hello.py -h
you entered help option

$ python hello.py help
you entered help option

$python hello.py h
you entered help option