Initial commit

This commit is contained in:
Nindi Gill 2022-07-01 16:44:06 +10:00
parent 9197011230
commit 2ed311a818
184 changed files with 8052 additions and 2 deletions

View file

@ -0,0 +1,16 @@
//
// 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"
}