package activitypub_client

  1. Overview
  2. Docs
ActivityPub client in OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ocaml-activitypub-0.1.0.tar.bz2
md5=332e6cab89ed63fda379aba37e00c40b
sha512=b6e5fe4948fdbe1d63227adc834c783821b609691c8db24438a8f76c5f6a2c60d1ecbd385baf1029901225abe2031d9aa994a0ed0321ea8082b3281e35552bb0

doc/activitypub_client/Activitypub_client/Actor/index.html

Module Activitypub_client.ActorSource

Acting as an actor

Sourcemodule AP = Activitypub
Sourcetype AP.E.error +=
  1. | Post_no_iri of Iri.t
    (*

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

    *)
Sourceclass type o = object ... end

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

Sourcemodule type T = sig ... end

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

Sourcemodule Make (A : Acti.T) : T