Neuron.Config.get

You're seeing just the function get, go back to Neuron.Config module for more information.

Specs

get(config :: atom()) :: any()

gets configuration value for Neuron

Examples

iex>Neuron.Config.set(url: "http://example.com/graph")
iex>Neuron.Config.get(:url)
"http://example.com/graph"

iex>Neuron.Config.set(headers: [name: "value"])
iex>Neuron.Config.get(:headers)
[name: "value"]

iex>Neuron.Config.get(:invalid)
nil