From 9bc4b3a4055eae57fb2b5001bc72ff1d5992e27b Mon Sep 17 00:00:00 2001 From: Russel Date: Fri, 7 Aug 2020 16:07:43 +0300 Subject: [PATCH] remove unnecessary files --- Keystore/KeystoreData.swift | 8 ------ Keystore/KeystoreDefinition.swift | 41 ------------------------------- Keystore/KeystoreExtractor.swift | 8 ------ 3 files changed, 57 deletions(-) delete mode 100644 Keystore/KeystoreData.swift delete mode 100644 Keystore/KeystoreDefinition.swift delete mode 100644 Keystore/KeystoreExtractor.swift diff --git a/Keystore/KeystoreData.swift b/Keystore/KeystoreData.swift deleted file mode 100644 index 91a90d9..0000000 --- a/Keystore/KeystoreData.swift +++ /dev/null @@ -1,8 +0,0 @@ -// -// KeystoreData.swift -// FearlessUtils -// -// Created by Ruslan Rezin on 05.08.2020. -// - -import Foundation diff --git a/Keystore/KeystoreDefinition.swift b/Keystore/KeystoreDefinition.swift deleted file mode 100644 index 6905189..0000000 --- a/Keystore/KeystoreDefinition.swift +++ /dev/null @@ -1,41 +0,0 @@ -import Foundation - -public struct KeystoreDefinition: Codable { - public let address: String - public let encoded: String - public let encoding: KeystoreEncoding - public let version: String - public let meta: KeystoreMeta - - public init(address: String, - encoded: String, - encoding: KeystoreEncoding, - version: String, - meta: KeystoreMeta) { - self.address = address - self.encoded = encoded - self.encoding = encoding - self.version = version - self.meta = meta - } -} - -public struct KeystoreEncoding: Codable { - public let content: [String] - public let type: [String] - - public init(content: [String], type: [String]) { - self.content = content - self.type = type - } -} - -public struct KeystoreMeta: Codable { - enum CodingKeys: String, CodingKey { - case name - case created = "whenCreated" - } - - public let name: String - public let created: Int64 -} diff --git a/Keystore/KeystoreExtractor.swift b/Keystore/KeystoreExtractor.swift deleted file mode 100644 index cae5b52..0000000 --- a/Keystore/KeystoreExtractor.swift +++ /dev/null @@ -1,8 +0,0 @@ -// -// KeystoreExtractor.swift -// FearlessUtils -// -// Created by Ruslan Rezin on 05.08.2020. -// - -import Foundation