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.
decentralised_book_index/test/support/test_endpoints.ex

13 lines
270 B

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