//
//  ViewPlugin.swift
//  Astro
//
//  Created by Jeremy Wiebe on 2015-05-07.
//  Copyright (c) 2015 Mobify Research & Development Inc. All rights reserved.
//

import Foundation

// Marks a Plugin as having a view component.
public protocol ViewPlugin: class {
    var viewController: UIViewController { get }
}
