ADD argparse import to clip.py, create example.config.toml, and reorganize imports in paths.py and video.py

This commit is contained in:
2025-12-18 15:17:40 +00:00
parent 6105a59a1d
commit c26084091f
4 changed files with 10 additions and 4 deletions

View File

@@ -1,5 +1,8 @@
#!/usr/bin/env python3
import os
import json
import tomllib
from pathlib import Path
import os, json, tomllib
from importlib import resources
APP_NAME = "rewind"