defmodule Lab do @moduledoc ~S""" Interface to the Gitlab API Lab provides an interface for different versions of the Gitlab API via adapters. A Lab configutation using the V4 adapter: config :lab, gitlab_api_endpoint: "https://git.lab/api/v4", gitlab_api_private_token: "token", adapter: Lab.Adapters.V4 Check the adapter's documentation for specific adapter documentation. """ use Lab.API end