Files
appchk-app/main/Extensions/SharedState.swift
2020-03-19 00:05:43 +01:00

9 lines
188 B
Swift

import Foundation
let dateTimeFormat = DateFormatter(withFormat: "yyyy-MM-dd HH:mm:ss")
var currentVPNState: VPNState = .off
public enum VPNState : Int {
case on = 1, inbetween, off
}