Skip to content

Commit

Permalink
Reformat with scalafmt 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Nov 10, 2021
1 parent 8541711 commit a1a4d96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/app/Api.scala
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ object Examples {
abstract class TapirApi[F[_]: Async] {
def tag: Tag
def serverEndpoints: List[ServerEndpoint[Any, F]]
def endpoints: List[Endpoint[_ ,_, _, _, _]] = serverEndpoints.map(_.endpoint)
def routes: HttpRoutes[F] = Http4sServerInterpreter().toRoutes(serverEndpoints)
def endpoints: List[Endpoint[_, _, _, _, _]] = serverEndpoints.map(_.endpoint)
def routes: HttpRoutes[F] = Http4sServerInterpreter().toRoutes(serverEndpoints)
}

0 comments on commit a1a4d96

Please sign in to comment.