Module Cowabloga.Links

type stream = {
name : string;
icon : string;
}

Link stream

type t = {
id : string;
uri : Uri.t;
title : string;
date : Date.date;
stream : stream;
}
val atom_entry_of_link : Atom_feed.t -> t -> Cow.Atom.entry Lwt.t
val cmp_ent : t -> t -> int
val to_atom : feed:Atom_feed.t -> entries:t list -> Cow.Atom.feed Lwt.t