15 lines
244 B
Python
15 lines
244 B
Python
|
"""The main routine of the yap python project."""
|
||
|
|
||
|
import sys
|
||
|
import yap4py.yapi
|
||
|
|
||
|
|
||
|
def main(**args):
|
||
|
"""The main routine."""
|
||
|
if args is None:
|
||
|
args = sys.argv[1:]
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|
||
|
yap4py.yapi.live()
|