mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
10 lines
111 B
Python
10 lines
111 B
Python
#!/usr/bin/env python
|
|
|
|
from cli import CLI
|
|
|
|
def main():
|
|
CLI().run()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|