mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-11 16:16:48 +01:00
0c224f47df
Co-authored-by: Marcus Kida <marcus.kida@bearologics.com> Co-authored-by: Jed Fox <git@jedfox.com>
15 lines
288 B
Swift
15 lines
288 B
Swift
//
|
|
// StatusPublishResult.swift
|
|
//
|
|
//
|
|
// Created by MainasuK on 2021-11-26.
|
|
//
|
|
|
|
import Foundation
|
|
import MastodonSDK
|
|
|
|
public enum StatusPublishResult {
|
|
case post(Mastodon.Response.Content<Mastodon.Entity.Status>)
|
|
case edit(Mastodon.Response.Content<Mastodon.Entity.Status>)
|
|
}
|