// // XCBActionType.swift // Tusker // // Created by Shadowfacts on 9/23/18. // Copyright © 2018 Shadowfacts. All rights reserved. // import Foundation enum XCBActionType: String { // Statuses case postStatus case favoriteStatus // Accounts case getCurrentUser var path: String { return "/\(rawValue)" } }