lib/dagger/gen/network_protocol.ex

# This file generated by `mix dagger.gen`. Please DO NOT EDIT.
defmodule Dagger.NetworkProtocol do
  @moduledoc "Transport layer network protocol associated to a port."
  @type t() :: :TCP | :UDP
  (
    @doc "TCP (Transmission Control Protocol)"
    @spec tcp() :: :TCP
    def tcp() do
      :TCP
    end
  )

  (
    @doc "UDP (User Datagram Protocol)"
    @spec udp() :: :UDP
    def udp() do
      :UDP
    end
  )
end