Skip to content

Commit

Permalink
Add comment to prod.exs to fix mix format
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraBeatris committed Oct 21, 2023
1 parent 4576525 commit 9ea43d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions config/prod.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This empty module is for configuration purposes
4 changes: 2 additions & 2 deletions lib/workos/client/tesla_client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule WorkOs.Client.TeslaClient do
@doc """
Sends a request to a WorkOs API endpoint, given list of request opts.
"""
@spec request(Resend.Client.t(), Keyword.t()) ::
@spec request(WorkOs.Client.t(), Keyword.t()) ::
{:ok, %{body: map(), status: pos_integer()}} | {:error, any()}
def request(client, opts) do
opts = Keyword.take(opts, [:method, :url, :query, :headers, :body, :opts])
Expand All @@ -17,7 +17,7 @@ defmodule WorkOs.Client.TeslaClient do
@doc """
Returns a new `Tesla.Client`, configured for calling the WorkOs API.
"""
@spec new(Resend.Client.t()) :: Tesla.Client.t()
@spec new(WorkOs.Client.t()) :: Tesla.Client.t()
def new(client) do
Tesla.client([
Tesla.Middleware.Logger,
Expand Down

0 comments on commit 9ea43d2

Please sign in to comment.