9 lines
152 B
Swift
9 lines
152 B
Swift
import Foundation
|
|
|
|
var currentVPNState: VPNState = .off
|
|
let sync = SyncUpdate(periodic: 7)
|
|
|
|
public enum VPNState : Int {
|
|
case on = 1, inbetween, off
|
|
}
|