Current section

Files

Jump to
graphqexl lib mix tasks dev.ex
Raw

lib/mix/tasks/dev.ex

defmodule Mix.Tasks.Dev do
@doc """
[STUB] Run a development server with the specified schema file
ARGS:
- schema_file: file path where the schema is defined
"""
@spec run([String.t,]) :: :ok
def run([_schema_file]) do
IO.puts "[TODO] Implement a dev server environment to run here..."
end
end