Current section
Files
Jump to
Current section
Files
lib/mix/tasks/hello.ex
defmodule Mix.Tasks.Hello do
@moduledoc "The hello mix task: `mix help hello`"
use Mix.Task
@shortdoc "Simply calls the Hello.say/0 function."
def run(x) do
IO.inspect(x)
Mix.Task.run("app.start")
# calling our Hello.say() function from earlier
GenerateConfig.create_config_files()
end
end