mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
7 lines
107 B
Python
7 lines
107 B
Python
from pathlib import Path
|
|
|
|
|
|
class Params:
|
|
def __init__(self, path: str):
|
|
self.path = Path(path)
|