update gitignore & reorganise imports in daemon

This commit is contained in:
2026-01-16 21:33:20 +00:00
parent 687c49d9cc
commit cccd8ad730
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -4,3 +4,4 @@ config.toml
__pycache__/ __pycache__/
rewind.egg-info/ rewind.egg-info/
markers.json markers.json
*.code-workspace

View File

@@ -8,9 +8,9 @@ import subprocess
from watchdog.observers import Observer from watchdog.observers import Observer
from watchdog.events import FileSystemEventHandler from watchdog.events import FileSystemEventHandler
from rewind.core import mark
from rewind.paths import load_config from rewind.paths import load_config
from rewind.state import add_file_to_state, create_state_file_if_needed, cleanup_state_files from rewind.state import add_file_to_state, create_state_file_if_needed, cleanup_state_files
from rewind.core import mark
INTERVAL = 10 INTERVAL = 10
running = True running = True