Impressia/Vernissage/Services/StatusService.swift
2023-01-05 11:55:20 +01:00

18 lines
373 B
Swift

//
// https://mczachurski.dev
// Copyright © 2023 Marcin Czachurski and the repository contributors.
// Licensed under the MIT License.
//
import Foundation
import MastodonSwift
public class StatusService {
public static let shared = StatusService()
private init() { }
func copy(from status: Status, to statusData: StatusData) {
}
}