15 lines
453 B
Swift
Raw Normal View History

//
// 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.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"
}
}