mirror of
https://github.com/tappollo/WWDC.git
synced 2026-01-12 22:45:32 +08:00
16 lines
341 B
Swift
16 lines
341 B
Swift
//
|
|
// TranscriptIndexingServiceProtocol.swift
|
|
// WWDC
|
|
//
|
|
// Created by Guilherme Rambo on 28/05/17.
|
|
// Copyright © 2017 Guilherme Rambo. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
@objc protocol TranscriptIndexingServiceProtocol: NSObjectProtocol {
|
|
|
|
func indexTranscriptsIfNeeded(storageURL: URL, schemaVersion: UInt64)
|
|
|
|
}
|