package activitypub_client

  1. Overview
  2. Docs

Acting as an actor

module AP = Activitypub
type AP.E.error +=
  1. | Post_no_iri of Iri.t
    (*

    When the server did not return an IRI after a POST.

    *)
class type o = object ... end

An actor implements AP.Types.actor with additional methods to post activities, create objects or retrieve information.

module type T = sig ... end

The signature of the module we get when applying the Make functor to and Acti.T module.

module Make (A : Acti.T) : T
OCaml

Innovation. Community. Security.