Start work on send-to-Micro.blog and send-to-MarsEdit commands.

This commit is contained in:
Brent Simmons
2018-01-08 21:53:49 -08:00
parent 1b0648cd18
commit b83a5694dc
4 changed files with 90 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
//
// SendToMicroBlogCommand.swift
// Evergreen
//
// Created by Brent Simmons on 1/8/18.
// Copyright © 2018 Ranchero Software. All rights reserved.
//
import Foundation
// Not undoable.
struct SendToMicroBlogCommand: SendToCommand {
func canSendObject(_ object: Any?) -> Bool {
return false
}
func sendObject(_ object: Any?) {
}
}
private extension SendToMicroBlogCommand {
func appExists() {
}
}