mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2025-01-15 19:01:29 +01:00
18 lines
373 B
Swift
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) {
|
|
|
|
}
|
|
}
|