mirror of
https://github.com/mastodon/mastodon-ios.git
synced 2024-12-14 01:26:05 +01:00
15 lines
199 B
Swift
15 lines
199 B
Swift
//
|
|
// StatusPublisherState.swift
|
|
//
|
|
//
|
|
// Created by MainasuK on 2021-11-26.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum StatusPublisherState {
|
|
case pending
|
|
case failure(Error)
|
|
case success
|
|
}
|