17 lines
1004 B
Python
17 lines
1004 B
Python
# ======================================================================= #
|
|
# Copyright (C) 2023 - 2024 Staubgeborener and Tylerjet #
|
|
# https://github.com/Staubgeborener/klipper-backup #
|
|
# #
|
|
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
|
# https://github.com/dw-0/kiauh #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
# ======================================================================= #
|
|
|
|
from pathlib import Path
|
|
|
|
EXT_MODULE_NAME = "klipper_backup_extension.py"
|
|
MODULE_PATH = Path(__file__).resolve().parent
|
|
KLIPPERBACKUP_DIR = Path.home().joinpath("klipper-backup")
|
|
KLIPPERBACKUP_CONFIG_DIR = Path.home().joinpath("config_backup")
|
|
KLIPPERBACKUP_REPO_URL = "https://github.com/staubgeborener/klipper-backup" |