mirror of
https://gitee.com/TheAlgorithms/LeetCodeAnimation.git
synced 2024-12-06 15:19:44 +08:00
8 lines
106 B
Python
Executable File
8 lines
106 B
Python
Executable File
#!/usr/bin/env python3
|
|
import fire
|
|
|
|
import anima
|
|
|
|
if __name__ == '__main__':
|
|
fire.Fire(anima.Anima())
|