Packages

Erlang Kubernetes client

Current section

Files

Jump to
kuberl gen kuberl_v1_exec_action.erl
Raw

gen/kuberl_v1_exec_action.erl

-module(kuberl_v1_exec_action).
-export([encode/1]).
-export_type([kuberl_v1_exec_action/0]).
-type kuberl_v1_exec_action() ::
#{ 'command' => list()
}.
encode(#{ 'command' := Command
}) ->
#{ 'command' => Command
}.