Current section

Files

Jump to
ash_phoenix lib mix tasks ash_phoenix.gen.live.ex
Raw

lib/mix/tasks/ash_phoenix.gen.live.ex

defmodule Mix.Tasks.AshPhoenix.Gen.Live do
@moduledoc """
Generates liveviews for a resource
"""
use Mix.Task
@shortdoc "Generates liveviews for a resource"
def run(argv) do
Mix.Task.run("compile")
AshPhoenix.Gen.Live.generate_from_cli(argv)
end
end