defmodule Feishu do @moduledoc """ Documentation for `Feishu`. """ @doc """ send text message to somebody who: string type: "post" default value is post """ defdelegate send(who, params, type \\ "post"), to: Feishu.Message end