Current section

Files

Jump to
ex_hash_ring lib ex_hash_ring.ex
Raw

lib/ex_hash_ring.ex

defmodule ExHashRing do
@moduledoc """
ExHashRing Application.
Starts all the components of ExHashRing that must be running for the library to function
correctly
"""
use Application
def start(_type, _args) do
ExHashRing.Info.start_link()
end
end