9 lines
202 B
Python
9 lines
202 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
Point d'entrée principal du script de classement automatique de captures d'écran de tweets.
|
|
"""
|
|
from tweet_classifier.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|