22 lines
721 B
Swift
22 lines
721 B
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import Foundation
|
|
import PixelfedKit
|
|
|
|
/// Pixelfed 'Statuses'.
|
|
extension Client {
|
|
public class Media: BaseClient {
|
|
func upload(data: Data, fileName: String, mimeType: String) async throws -> UploadedAttachment? {
|
|
return try await pixelfedClient.upload(data: data, fileName: fileName, mimeType: mimeType)
|
|
}
|
|
|
|
func update(id: String, description: String?, focus: CGPoint?) async throws -> UploadedAttachment? {
|
|
return try await pixelfedClient.update(id: id, description: description, focus: focus)
|
|
}
|
|
}
|
|
}
|