2017-09-17 20:32:58 +02:00
|
|
|
//
|
|
|
|
// LocalAccountDelegate.swift
|
|
|
|
// Account
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 9/16/17.
|
|
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
struct LocalAccountDelegate: AccountDelegate {
|
|
|
|
|
2017-09-28 22:16:47 +02:00
|
|
|
let supportsSubFolders = false
|
|
|
|
|
2017-09-17 20:32:58 +02:00
|
|
|
func refreshAll(for account: Account) {
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
}
|