Add document package blueprint

This commit is contained in:
Tobie Morgan Hitchcock 2022-01-13 07:00:50 +00:00
parent e89ebb2c79
commit 9e5e6efa6d
8 changed files with 16 additions and 3 deletions

1
src/doc/create.rs Normal file
View file

@ -0,0 +1 @@

1
src/doc/delete.rs Normal file
View file

@ -0,0 +1 @@

1
src/doc/index.rs Normal file
View file

@ -0,0 +1 @@

1
src/doc/insert.rs Normal file
View file

@ -0,0 +1 @@

View file

@ -1,13 +1,19 @@
mod doc;
pub use self::doc::*;
mod allow;
mod check;
mod create;
mod delete;
mod doc;
mod event;
mod grant;
mod index;
mod insert;
mod lives;
mod merge;
mod perms;
mod relate;
mod select;
mod table;
mod update;
mod r#yield;
pub use self::doc::*;

1
src/doc/relate.rs Normal file
View file

@ -0,0 +1 @@

1
src/doc/select.rs Normal file
View file

@ -0,0 +1 @@

1
src/doc/update.rs Normal file
View file

@ -0,0 +1 @@