10 lines
113 B
Python
10 lines
113 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Web Scraper CLI
|
|
"""
|
|
|
|
from app.cli.cli import app
|
|
|
|
if __name__ == "__main__":
|
|
app()
|