Neuron.Store.get

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

Specs

get(key :: atom()) :: any()

returns neuron application/process environmental variables

Examples

iex> Neuron.Store.set(:my_key, "value")
:ok
iex> Neuron.Store.get(:my_key)
"value"

Specs

get(context :: :global | :process, key :: atom()) :: any()

Specs

get(context :: :global | :process, key :: atom(), default :: any()) :: any()