mirror of
https://github.com/realm/SwiftLint.git
synced 2026-06-06 20:18:40 +00:00
f639ae95f1
to provide more complete descriptions for cache invalidation purposes.
12 lines
234 B
Swift
12 lines
234 B
Swift
//
|
|
// CacheDescriptionProvider.swift
|
|
// SwiftLint
|
|
//
|
|
// Created by JP Simard on 5/16/17.
|
|
// Copyright © 2017 Realm. All rights reserved.
|
|
//
|
|
|
|
internal protocol CacheDescriptionProvider {
|
|
var cacheDescription: String { get }
|
|
}
|