OSDN Git Service

UAをVersion/10.0.3 Safari/602.4.8に変更
[kcd/KCD.git] / KCD / PortNotifyCommand.swift
1 //
2 //  PortNotifyCommand.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/01/08.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 extension Notification.Name {
12     static let PortAPIReceived = Notification.Name("com.masakih.KCD.Notification.PortAPIReceived")
13 }
14
15 class PortNotifyCommand: JSONCommand {
16     override func execute() {
17         DispatchQueue.main.async {
18             NotificationCenter.default.post(name: .PortAPIReceived, object: self)
19         }
20     }
21 }