24 lines
434 B
Factor
24 lines
434 B
Factor
|
! Copyright (C) 2009 Your name.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: help.markup help.syntax kernel ;
|
||
|
IN: mongodb.operations
|
||
|
|
||
|
HELP: read-message
|
||
|
{ $values
|
||
|
|
||
|
{ "message" null }
|
||
|
}
|
||
|
{ $description "" } ;
|
||
|
|
||
|
HELP: write-message
|
||
|
{ $values
|
||
|
{ "message" null }
|
||
|
}
|
||
|
{ $description "" } ;
|
||
|
|
||
|
ARTICLE: "mongodb.operations" "mongodb.operations"
|
||
|
{ $vocab-link "mongodb.operations" }
|
||
|
;
|
||
|
|
||
|
ABOUT: "mongodb.operations"
|