Packages
DEPRECATED: go to https://hex.pm/packages/starkbank.
Retired package: Deprecated - v1 SDK is deprecated. Go to https://hex.pm/packages/starkbank.
Current section
Files
Jump to
Current section
Files
lib/utils/requests/api_links.ex
defmodule StarkBank.Utils.Requests.APILinks do
@moduledoc false
@sandbox_url 'https://sandbox.api.starkbank.com/v1/'
@production_url 'https://api.starkbank.com/v1/'
def get_url_by_env(env) do
cond do
env == :sandbox -> @sandbox_url
env == :production -> @production_url
end
end
end