// // RealDestroyShipCommand.swift // KCD // // Created by Hori,Masaki on 2017/01/09. // Copyright © 2017年 Hori,Masaki. All rights reserved. // import Cocoa final class RealDestroyShipCommand: JSONCommand { override func execute() { let store = ServerDataStore.oneTimeEditor() parameter["api_ship_id"] .int .flatMap(store.ship(by:)) .flatMap(store.delete) } }