From: Kyle Bowman Date: Sun, 24 Mar 2024 18:57:44 +0000 (-0400) Subject: Add get_argspec, get_parser to __all__. X-Git-Tag: v0.1.0~3 X-Git-Url: https://git.rocketbowman.com/?a=commitdiff_plain;h=7f71132cf019dafa230e582f51283bf5ba3d7ba6;p=proto.git Add get_argspec, get_parser to __all__. --- diff --git a/src/proto/__init__.py b/src/proto/__init__.py index 4e0fee2..5fccd95 100644 --- a/src/proto/__init__.py +++ b/src/proto/__init__.py @@ -1,3 +1,4 @@ from proto.command import Command, command +from proto.infer import get_parser, get_argspecs -__all__ = ['Command', 'command'] \ No newline at end of file +__all__ = ['Command', 'command', get_argspecs, get_parser] \ No newline at end of file