Files
gallery/gallery/util.py
2026-04-22 21:42:39 +03:00

12 lines
169 B
Python

from pathlib import Path
class TimeUnit:
SECOND = 1
MINUTE = 60 * SECOND
HOUR = 60 * MINUTE
DAY = 24 * HOUR
root_path = Path(__file__).parent.parent