package calculon-redis-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type privmsg = {
  1. source : string;
  2. dest : string;
  3. message : string;
}
type message = [
  1. | `Join of string list
  2. | `Part of string list
  3. | `Privmsg of privmsg
]
type send = {
  1. message : message;
}