Mist/Shared/HelperToolCommandType.swift
2022-07-01 16:44:06 +10:00

16 lines
345 B
Swift

//
// HelperToolCommandType.swift
// Mist
//
// Created by Nindi Gill on 21/6/2022.
//
import Foundation
enum HelperToolCommandType: String, Codable {
// swiftlint:disable redundant_string_enum_value
case remove = "remove"
case installer = "installer"
case createinstallmedia = "createinstallmedia"
case kill = "kill"
}