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,14 @@
//
// HelperToolCommandRequest.swift
// Mist
//
// Created by Nindi Gill on 21/6/2022.
//
import Foundation
struct HelperToolCommandRequest: Codable {
let type: HelperToolCommandType
let arguments: [String]
let environment: [String: String]
}