9 lines
115 B
Python
9 lines
115 B
Python
"""Module entry point for ``python -m ohmo``."""
|
|
|
|
from ohmo.cli import app
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app()
|
|
|