Tusker/Tusker/XCallbackURL/XCBActionType.swift

26 lines
437 B
Swift

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