Skip to content

Commit

Permalink
Fix util, clean up, fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasbair committed Sep 1, 2024
1 parent 1454e34 commit e87cd7c
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ by adding `ex_oanda` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:ex_oanda, "~> 0.1.0"}
{:ex_oanda, "~> 0.0.1"}
]
end
```
Expand Down
2 changes: 0 additions & 2 deletions util/api.ex → lib/util/api.ex
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ defmodule ExOanda.API do
"user-agent": "ExOanda/" <> Mix.Project.config()[:version]
]

# @success_codes Enum.to_list(200..299)

@spec auth_bearer(Conn.t()) :: {:bearer, String.t()}
def auth_bearer(%Conn{token: token}) do
{:bearer, token}
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule ExOanda.MixProject do
[
app: :ex_oanda,
version: "0.0.1",
elixir: "~> 1.16",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
dialyzer: [plt_add_apps: [:mix]],
Expand Down

0 comments on commit e87cd7c

Please sign in to comment.