OSDN Git Service

バージョンを1.9b33に更新
[kcd/KCD.git] / KCD / MemberBasicCommand.swift
1 //
2 //  MemberBasicCommand.swift
3 //  KCD
4 //
5 //  Created by Hori,Masaki on 2017/01/13.
6 //  Copyright © 2017年 Hori,Masaki. All rights reserved.
7 //
8
9 import Cocoa
10
11 final class MemberBasicCommand: JSONCommand {
12     
13     override class func canExecuteAPI(_ api: String) -> Bool {
14         
15         if api == "/kcsapi/api_get_member/basic" { return true }
16         
17         return false
18     }
19     
20     override func execute() {
21         
22         BasicMapper(apiResponse).commit()
23     }
24 }