defmodule Octonetcat.Application do @moduledoc """ Octonetcat Application entry """ use Application def start(_, _) do Octonetcat.Supervisor.start_link() end end