Tusker/Tusker/XCallbackURL/XCBActionType.swift

22 lines
354 B
Swift
Raw Normal View History

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