13 lines
188 B
Swift
13 lines
188 B
Swift
//
|
|
// Keychain.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 7/20/22.
|
|
//
|
|
|
|
import Foundation
|
|
import KeychainSwift
|
|
|
|
public class Keychain {
|
|
static let shared = KeychainSwift()
|
|
}
|