diff --git a/src/argmojo/prelude.mojo b/src/argmojo/prelude.mojo new file mode 100644 index 0000000..7a25d05 --- /dev/null +++ b/src/argmojo/prelude.mojo @@ -0,0 +1,19 @@ +"""Prelude module for ArgMojo. + +Usage: + +```mojo +from argmojo.prelude import * +``` + +This imports all public types and traits from ArgMojo for convenience. +""" + +# Builder API +from .argument import Argument +from .command import Command +from .parse_result import ParseResult + +# Declarative API +from .parsable import Parsable +from .argument_wrappers import Option, Flag, Positional, Count