9 lines
128 B
Python
9 lines
128 B
Python
"""
|
|
Entry point for running oAI as a module: python -m oai
|
|
"""
|
|
|
|
from oai.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|