Defined the "account" keychain storage key in the String+KeychainStorageKeys extension.

This commit is contained in:
Javier Cicchelli 2022-12-11 21:01:47 +01:00
parent 09b092f33c
commit 39444cd9ea

View File

@ -0,0 +1,13 @@
//
// String+KeychainStorageKeys.swift
// DataModels
//
// Created by Javier Cicchelli on 11/12/2022.
// Copyright © 2022 Röck+Cöde. All rights reserved.
//
public extension String {
enum KeychainStorage {
public static let account = "com.rockncode.app.assignment.be-real.library.data-models.keychain.key.account"
}
}