15 lines
451 B
Swift
15 lines
451 B
Swift
|
//
|
||
|
// String+KeychainStorageKeys.swift
|
||
|
// KeychainStorageTests
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 11/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
extension String {
|
||
|
enum Keys {
|
||
|
static let someKey = "com.rockncode.app.assignment.be-real.library.keychain-storage.test.key.some-key"
|
||
|
static let someOtherKey = "com.rockncode.app.assignment.be-real.library.keychain-storage.test.key.some-other-key"
|
||
|
}
|
||
|
}
|