2022-10-31 20:41:19 +08:00
|
|
|
//
|
|
|
|
// StatusPublishResult.swift
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Created by MainasuK on 2021-11-26.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import MastodonSDK
|
|
|
|
|
|
|
|
public enum StatusPublishResult {
|
2023-03-02 11:06:13 +01:00
|
|
|
case post(Mastodon.Response.Content<Mastodon.Entity.Status>)
|
|
|
|
case edit(Mastodon.Response.Content<Mastodon.Entity.Status>)
|
2022-10-31 20:41:19 +08:00
|
|
|
}
|