Packages

A Plug-based implementation of the OCI Distribution Specification (v2) registry server for Elixir applications. Provides a compliant HTTP API for container image distribution, supporting pull, push, and management operations.

Current section

Files

Jump to
oci lib oci.ex
Raw

lib/oci.ex

defmodule OCI do
@moduledoc """
Documentation for `OCI`.
"""
@doc """
Hello world.
## Examples
iex> OCI.hello()
:world
"""
def hello do
:world
end
end