6 lines
114 B
Python
6 lines
114 B
Python
import os
|
|
|
|
DB_PATH = os.getenv("DB_PATH") or "speedtest.db"
|
|
PING_INTERVAL = int(os.getenv("PING_INTERVAL", "5"))
|
|
|