Files
acc-server-manager/local/model/api.go
Fran Jurmanović a1bcc080f1 status updates
2025-05-06 23:46:02 +02:00

14 lines
274 B
Go

package model
type ServiceStatus string
const (
StatusRunning ServiceStatus = "SERVICE_RUNNING\r\n"
StatusStopped ServiceStatus = "SERVICE_STOPPED\r\n"
StatusRestarting ServiceStatus = "SERVICE_RESTARTING\r\n"
)
type ApiModel struct {
Api string `json:"api"`
}