13 lines
176 B
Swift
13 lines
176 B
Swift
import Foundation
|
|
|
|
enum ServerStatus: Int, Codable {
|
|
|
|
case running = 0
|
|
|
|
case somePushTokensFailed = 1
|
|
|
|
case pushFailed = 2
|
|
|
|
case starting = 3
|
|
}
|