Packages

fhir client implementation in elixir

Current section

Files

Jump to
fhir_client lib fhir_client.ex
Raw

lib/fhir_client.ex

defmodule FhirClient do
@moduledoc """
Documentation for FhirClient.
"""
@doc """
Hello world.
## Examples
iex> FhirClient.hello()
:world
"""
def hello do
:world
end
end