refactor: remove uptime kuma integration

This commit is contained in:
trafficlunar 2025-01-16 22:05:44 +00:00
parent fa0f5119bd
commit c92e8670c9
7 changed files with 0 additions and 124 deletions

View file

@ -1,12 +0,0 @@
package handler
import (
"backend/internal/worker"
"encoding/json"
"net/http"
)
func HandleGetStatus(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(worker.StatusData)
}