aife/lib/aife.ex

31 lines
638 B
Elixir

defmodule Aife do
@moduledoc """
Documentation for Aife.
"""
@doc """
Installs drone firmware on a target.
Installing drone firmware allows Aife to change and control her drone's appearance and mind according to her whim.
See `Aife.Drone` for more info.
"""
@doc since: "0.1.0"
def install_drone_firmware(target) do
end
@doc """
Gets a drone process.
This allows Aife to retrive a drone's designation from her database to issue further commands.
## Example
Aife.get_drone("sample designation")
#=> {:ok, #PID<0.123.0>}
"""
@doc since: "0.1.0"
def get_drone(designation) do
end
end