18 lines
370 B
Python
18 lines
370 B
Python
"""
|
|
Falyx CLI Framework
|
|
|
|
Copyright (c) 2025 rtj.dev LLC.
|
|
Licensed under the MIT License. See LICENSE file for details.
|
|
"""
|
|
|
|
from .argparse import Argument, ArgumentAction, CommandArgumentParser
|
|
from .parsers import FalyxParsers, get_arg_parsers
|
|
|
|
__all__ = [
|
|
"Argument",
|
|
"ArgumentAction",
|
|
"CommandArgumentParser",
|
|
"get_arg_parsers",
|
|
"FalyxParsers",
|
|
]
|