defmodule EventStore.Application do @moduledoc false use Application def start(_, _) do config = EventStore.configuration() |> EventStore.Config.parse() EventStore.Supervisor.start_link(config) end end