You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
defmodule DecentralisedBookIndex.TestEndpoints do
|
|
@moduledoc "Test API endpoint for tests"
|
|
|
|
@test_api_endpoint "http://localhost:4002"
|
|
|
|
@doc """
|
|
Returns the url of test API endpoint.
|
|
"""
|
|
def test_api_endpoint(_opts \\ []) do
|
|
@test_api_endpoint
|
|
end
|
|
end
|