mirror of
https://github.com/kkebo/DNSecure.git
synced 2026-03-11 08:54:36 +00:00
15 lines
289 B
Swift
15 lines
289 B
Swift
|
|
//
|
||
|
|
// NEOnDemandRuleAction+CaseIterable.swift
|
||
|
|
// DNSecure
|
||
|
|
//
|
||
|
|
// Created by Kenta Kubo on 12/20/20.
|
||
|
|
//
|
||
|
|
|
||
|
|
import NetworkExtension
|
||
|
|
|
||
|
|
extension NEOnDemandRuleAction: CaseIterable {
|
||
|
|
public static var allCases: [Self] {
|
||
|
|
[.connect, .disconnect, .evaluateConnection, .ignore]
|
||
|
|
}
|
||
|
|
}
|