Module Bookmark

A bookmark database.

type t = {
id : int;
name : string;
description : string;
broken : bool;
}
val all : unit -> t list
val get : int -> t option
val set : t -> unit
val delete : t -> unit
val restore_deleted : unit -> unit