1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-01-31 09:35:13 +01:00

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
}