vapor-request-storage/Sources/Helpers/Storage.swift

8 lines
122 B
Swift

import Service
public class Storage: Service {
public var cache: [String: Codable] = [:]
public init() {}
}