2022-12-11 18:57:53 +01:00
|
|
|
//
|
|
|
|
// 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 {
|
2023-04-14 18:23:05 +02:00
|
|
|
static let someKey = "com.rockncode.app.assignment.my-files.library.keychain-storage.test.key.some-key"
|
|
|
|
static let someOtherKey = "com.rockncode.app.assignment.my-files.library.keychain-storage.test.key.some-other-key"
|
2022-12-11 18:57:53 +01:00
|
|
|
}
|
|
|
|
}
|