Skip to content

Commit

Permalink
feat: allow to be executed with python -m smassh
Browse files Browse the repository at this point in the history
  • Loading branch information
kraanzu committed Feb 6, 2024
1 parent 747e9c3 commit fdecef5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions smassh/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ def main(ctx, version: bool) -> None:
@click.argument("name")
def add(name: str) -> None:
AddLanguage().add(name)


if __name__ == "__main__":
main()

0 comments on commit fdecef5

Please sign in to comment.