Files
find_old_mp3s/lib/find_old_mp3s.ex
Pascal Schmid 9c07c40ebc Replace bakeware with burrito
Bakeware has been deprecated
2024-05-18 01:07:30 +02:00

12 lines
219 B
Elixir

defmodule FindOldMp3s.Application do
@moduledoc """
Main module to run when invoking the binary
"""
def start(_, _) do
args = Burrito.Util.Args.get_arguments()
|> parse_options
|> execute
end
end