package ez_api

  1. Overview
  2. Docs
include module type of struct include Url.TYPES end
type base_url = Url.TYPES.base_url =
  1. | BASE of string
type url = Url.TYPES.url =
  1. | URL of string
type param_value =
  1. | I of int
  2. | S of string
  3. | B of bool
  4. | LS of string list
type ip_info = {
  1. ip_ip : string;
  2. mutable ip_last : float;
  3. mutable ip_nb : int;
  4. ip_country : string * string;
}