Skip to content

Commit

Permalink
Fix params
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-ramotar committed Jan 13, 2024
1 parent b2ee2fd commit 61c214a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ai.wandering.scoop.v1.http.impl.RealGetUSTopStories
import io.ktor.client.*

internal class RealScoopClient(httpClient: HttpClient, bearerToken: String) : ScoopClient {
override val getGlobalTopStories: GetGlobalTopStories = RealGetGlobalTopStories(httpClient)
override val getUSTopStories: GetUSTopStories = RealGetUSTopStories(httpClient)
override val getPublications: GetPublications = RealGetPublications(httpClient)
override val getGlobalTopStories: GetGlobalTopStories = RealGetGlobalTopStories(httpClient, bearerToken)
override val getUSTopStories: GetUSTopStories = RealGetUSTopStories(httpClient, bearerToken)
override val getPublications: GetPublications = RealGetPublications(httpClient, bearerToken)
}

0 comments on commit 61c214a

Please sign in to comment.