FlurSchnaps-Server/Sources/App/ServerStatus.swift

15 lines
208 B
Swift
Raw Normal View History

2022-09-04 15:01:35 +02:00
import Foundation
enum ServerStatus: Int, Codable {
case running = 0
case somePushTokensFailed = 1
case pushFailed = 2
case starting = 3
2022-09-04 17:09:51 +02:00
case failedToStart = 4
2022-09-04 15:01:35 +02:00
}