Current section
Files
Jump to
Current section
Files
lib/mix/tasks/sqlite_hello.install.ex
defmodule Mix.Tasks.SqliteHello.Install do
@shortdoc "Installs SqliteHello extension files"
use Mix.Task
@impl true
def run(_args) do
Application.ensure_all_started(:sqlite_hello)
SqliteHello.install()
end
end