Current section

Files

Jump to
xberg lib xberg extract_input_kind.ex
Raw

lib/xberg/extract_input_kind.ex

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:b2c29ab80fb9cdb8c5190a7808ad862ad890f416ad887092447b282a5b1b69e0
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.ExtractInputKind do
@moduledoc "Source kind for [`ExtractInput`]."
@typedoc "Source kind for [`ExtractInput`]."
@type t :: :bytes | :uri
@bytes :bytes
@uri :uri
@doc "Raw in-memory bytes."
@spec bytes() :: t()
def bytes, do: @bytes
@doc "A filesystem path, `file://` URI, or HTTP(S) URL."
@spec uri() :: t()
def uri, do: @uri
end