source: code/trunk/src/core/store.ml@ 1

Last change on this file since 1 was 1, checked in by fox, 9 years ago

initial simple example with omd

File size: 256 bytes
Line 
1module type T = sig
2 type t
3 val to_list: ?order:('a -> 'a -> int) -> (Note.t -> 'a) -> t -> 'a list
4 val note_with_id: t -> Meta.Id.t -> Note.t option
5 val note_with_alias: t -> string -> Note.t option
6 val with_note: t -> Note.t -> Note.t Lwt.t
7end
Note: See TracBrowser for help on using the repository browser.