diff --git a/lib/src/key/mod.rs b/lib/src/key/mod.rs index 1e628170..4c73328f 100644 --- a/lib/src/key/mod.rs +++ b/lib/src/key/mod.rs @@ -30,27 +30,27 @@ /// /// Index /*{ns}*{db}*{tb}ยค{ix}{fd}{id} /// -pub mod database; -pub mod db; -pub mod dl; -pub mod dt; -pub mod ev; -pub mod fd; -pub mod ft; -pub mod graph; -pub mod index; -pub mod ix; -pub mod kv; -pub mod lq; -pub mod lv; -pub mod namespace; -pub mod nl; -pub mod ns; -pub mod nt; -pub mod pa; -pub mod sc; -pub mod scope; -pub mod st; -pub mod table; -pub mod tb; -pub mod thing; +pub mod database; // Stores the key prefix for all keys under a database +pub mod db; // Stores a DEFINE DATABASE config definition +pub mod dl; // Stores a DEFINE LOGIN ON DATABASE config definition +pub mod dt; // Stores a DEFINE LOGIN ON DATABASE config definition +pub mod ev; // Stores a DEFINE EVENT config definition +pub mod fd; // Stores a DEFINE FIELD config definition +pub mod ft; // Stores a DEFINE TABLE AS config definition +pub mod graph; // Stores a graph edge pointer +pub mod index; // Stores an index entry +pub mod ix; // Stores a DEFINE INDEX config definition +pub mod kv; // Stores the key prefix for all keys +pub mod lq; // Stores a LIVE SELECT query definition on the database +pub mod lv; // Stores a LIVE SELECT query definition on the table +pub mod namespace; // Stores the key prefix for all keys under a namespace +pub mod nl; // Stores a DEFINE LOGIN ON NAMESPACE config definition +pub mod ns; // Stores a DEFINE NAMESPACE config definition +pub mod nt; // Stores a DEFINE TOKEN ON NAMESPACE config definition +pub mod pa; // Stores a DEFINE PARAM config definition +pub mod sc; // Stores a DEFINE SCOPE config definition +pub mod scope; // Stores the key prefix for all keys under a scope +pub mod st; // Stores a DEFINE TOKEN ON SCOPE config definition +pub mod table; // Stores the key prefix for all keys under a table +pub mod tb; // Stores a DEFINE TABLE config definition +pub mod thing; // Stores a record id