Packages
Provides an interface for reading and writing data in an Entity Component System. Note that it is up to the consuming application to implement the 'Systems' as this package simply makes working with data easier.
Retired package: Deprecated - abandoned
Current section
Files
Jump to
Current section
Files
lib/mix/tasks/execs.tables.drop.ex
defmodule Mix.Tasks.Execs.Tables.Drop do
use Execs.Utils
use Mix.Task
@shortdoc "Drop the tables for execs."
@doc false
def run(_) do
IO.puts "Dropping tables"
Application.ensure_started(:execs)
Execs.drop_tables()
IO.puts "Tables dropped"
end
end