forked from ovh/pci-test
11 lines
145 B
Python
11 lines
145 B
Python
|
from a import print_args
|
||
|
from art import text2art
|
||
|
|
||
|
|
||
|
def main():
|
||
|
return text2art(print_args())
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
print(main())
|