Add NAS config files

This commit is contained in:
root
2026-07-07 21:06:36 +05:00
parent d4cfdf0a0c
commit 90cd7a8f28
20 changed files with 1212 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from bandcamp_dl.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())