9 lines
148 B
Python
9 lines
148 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Entry point for the YouTube CLI application
|
|
"""
|
|
|
|
from youtube_cli.main import main
|
|
|
|
if __name__ == "__main__":
|
|
main() |