refactor: Switching to a cron system for tasks, restructuring service and status models

Added response time field for Status model, set log level from ENV
This commit is contained in:
2025-10-28 00:51:29 +03:00
parent 1958d9b3d9
commit b33df27b31
11 changed files with 254 additions and 63 deletions

View File

@@ -0,0 +1,8 @@
-- +goose Up
alter table statuses
add column response_time integer default null;
-- +goose Down
alter table statuses
drop column response_time;