1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
fftcgtool/main.py

12 lines
142 B
Python
Executable file

#!/usr/bin/env python3
from fftcg.opus import Opus
def main():
opus = Opus(14)
print(opus)
if __name__ == '__main__':
main()