Current section

Files

Jump to
churn lib churn.ex
Raw

lib/churn.ex

defmodule Churn do
@moduledoc """
Churn is a good refactoring candidates finder for your version-control system.
"""
alias Churn.Configuration
alias Churn.Execution
@spec run([any()]) :: :ok
def run(args) do
args
|> Configuration.build()
|> Execution.run()
end
end