crystal-docker-api | 6d60574a6c3b7f324ed3631ac1cc6cf41f906389 | src/docker/api_client_wrapper.cr ∙ GitFOSS
62f0c575/14/2026, 9:47:06 AM
.cr
Crystal
(text/x-crystal)
require "./api/api_client"

# Mixin for building objects that wrap sections of the API.
module Docker::ApiClientWrapper
  private getter client : Docker::Api::ApiClient

  # Creats a new instance for a pre-establish low-level client.
  def initialize(@client)
  end
end