artifact-app 0.6.3

Artifact is a design doc tool made for developers. It allows anyone to easily write and link their design docs both to each other and to source code, making it easy to track how complete their project is. Documents are revision controllable, can be rendered as a static web page and have a full suite of command line tools for searching, formatting and displaying them.
Documentation
use dev_prefix::*;

use jsonrpc_core::ErrorCode;

pub const X_IDS_NOT_FOUND: &'static str = "xIdsNotFound";
pub const X_INVALID_NAME: &'static str = "xInvalidName";
pub const X_FILES_NOT_FOUND: &'static str = "xFilesNotFound";
// const X_PROCESS_ERROR: &'static str = "xProcessError";
pub const X_MULTIPLE_ERRORS: &'static str = "xMultipleErrors";
pub const X_CODE: i64 = -32000;

pub const SERVER_ERROR: ErrorCode = ErrorCode::ServerError(X_CODE);