feat: add /status route

This commit is contained in:
trafficlunar 2024-10-06 13:38:26 +01:00
parent 7a8a229f0e
commit aaa8640aaf
7 changed files with 122 additions and 3 deletions

8
internal/model/status.go Normal file
View file

@ -0,0 +1,8 @@
package model
type StatusData struct {
Success bool `json:"success"`
Website uint8 `json:"website"`
Api uint8 `json:"api"`
Files uint8 `json:"files"`
}