this repo has no description

Swifts worst problem.. added a public init to the struct

Changed files
+6
Sources
Vault
+6
Sources/Vault/Vault.swift
··· 11 11 public let serviceName: String 12 12 public let accessGroup: String? 13 13 public let accountName: String 14 + 15 + public init(serviceName: String, accessGroup: String?, accountName: String) { 16 + self.serviceName = serviceName 17 + self.accessGroup = accessGroup 18 + self.accountName = accountName 19 + } 14 20 } 15 21 16 22 public enum VaultError: Error {