9 lines
105 B
Python
9 lines
105 B
Python
"""
|
|
Entry point for python -m discover
|
|
"""
|
|
|
|
from .cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|