Current section
Files
Jump to
Current section
Files
gen/kuberl_v1_local_volume_source.erl
-module(kuberl_v1_local_volume_source).
-export([encode/1]).
-export_type([kuberl_v1_local_volume_source/0]).
-type kuberl_v1_local_volume_source() ::
#{ 'path' := binary()
}.
encode(#{ 'path' := Path
}) ->
#{ 'path' => Path
}.