mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Start work on send-to-Micro.blog and send-to-MarsEdit commands.
This commit is contained in:
31
Commands/SendToMicroBlogCommand.swift
Normal file
31
Commands/SendToMicroBlogCommand.swift
Normal 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() {
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user