Skip to content
This repository has been archived by the owner on Aug 26, 2022. It is now read-only.

Commit

Permalink
Type for public function in Service
Browse files Browse the repository at this point in the history
  • Loading branch information
amrhassan committed Jan 13, 2018
1 parent 150ac65 commit ccc43af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/org/aws4s/Service.scala
Expand Up @@ -7,6 +7,6 @@ import org.http4s.client.Client
private[aws4s] abstract class Service[F[_], A] {
def client: F[Client[F]]
def credentials: () => Credentials
def run[R: EntityDecoder[F, ?]](command: Command[F, A, R]) =
def run[R: EntityDecoder[F, ?]](command: Command[F, A, R]): F[R] =
command.run(client, credentials)
}

0 comments on commit ccc43af

Please sign in to comment.