18 lines
539 B
Swift
18 lines
539 B
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import Foundation
|
|
import PixelfedKit
|
|
|
|
/// Pixelfed 'Search'.
|
|
extension Client {
|
|
public class Search: BaseClient {
|
|
public func search(query: String, resultsType: Pixelfed.Search.ResultsType, limit: Int = 20, page: Int = 1) async throws -> SearchResults? {
|
|
return try await pixelfedClient.search(query: query, type: resultsType, limit: limit, page: page)
|
|
}
|
|
}
|
|
}
|