Current section

Files

Jump to
sqlite_hello lib mix tasks sqlite_hello.install.ex
Raw

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