// // GithubMetaCacher.swift // Example // // Created by Kensuke Tamura on 2020/12/16. // import Foundation import StoreFlowable class GithubMetaCacher: Cacher { static let shared = GithubMetaCacher() override var expireSeconds: TimeInterval { get { TimeInterval(60) } } override private init() { } }