module EazyDB
Defined in:
console.crrecord/base.cr
Constant Summary
-
COMMANDS =
{/^create (?<args>.*)/ => Commands::Create, /^insert (?<args>.*)/ => Commands::Insert, /^get (?<args>.*)/ => Commands::Get, /^update (?<args>.*)/ => Commands::Update, /^delete (?<args>.*)/ => Commands::Delete, /^dump$/ => Commands::Dump, /^reindex$/ => Commands::Reindex, /^purge$/ => Commands::Purge, /^info$/ => Commands::Info}