# Author:       Li Junhao       l@x-cmd.com
# shellcheck    shell=sh        disable=SC2039,SC1090,SC3043,SC2263

# license:      GPLv3

xrc:mod:lib     tap             main

___x_cmd_tap(){
    case "$1" in
        -h|--help)
            x help -m tap 1>&2
            return 1 ;;
        *)   ___x_cmd_tap___main "$@"
    esac
}

xrc setmain ___x_cmd_tap
