11 lines
140 B
Python
11 lines
140 B
Python
"""Entry point for the bulkgen CLI."""
|
|
|
|
from bulkgen.cli import app
|
|
|
|
|
|
def main() -> None:
|
|
app()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|