NetNewsWire/Evergreen/Inspector/FeedInspectorViewController...

26 lines
463 B
Swift
Raw Normal View History

//
// FeedInspectorViewController.swift
// Evergreen
//
// Created by Brent Simmons on 1/20/18.
// Copyright © 2018 Ranchero Software. All rights reserved.
//
import AppKit
2018-01-21 07:36:17 +01:00
import Data
2018-01-21 07:36:17 +01:00
final class FeedInspectorViewController: NSViewController, Inspector {
2018-01-21 07:36:17 +01:00
let isFallbackInspector = false
var objects: [Any]?
func canInspect(_ objects: [Any]) -> Bool {
return objects.count == 1 && objects.first is Feed
}
func willEndInspectingObjects() {
}
2018-01-21 06:35:59 +01:00
}