Current section
Files
Jump to
Current section
Files
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