package equinoxe

  1. Overview
  2. Docs

Equinoxe library interface.

Manipulate Results

module Json : sig ... end

The Json module provides helpers to manipulate JSON objects.

module type API = sig ... end

It is the signature that matches the API of the website.

Build your own API

module type S = sig ... end

The S module gathers all the methods you need to be able to execute HTTP requests to contact an API server. It must send application/json request.

module Default_api : S

The S module gathers all the methods you need to be able to execute HTTP requests to contact an API server. It must send application/json request.

module Make (C : S) : API

Factory to build a system to communicate with Equinix API, using the S communication system.