Current section

Files

Jump to
blur lib command.ex
Raw

lib/command.ex

defmodule Blur.Command do
@moduledoc """
Processor of commands (right now)
"""
require Logger
def run(_msg, _user, _channel) do
:ok
end
end