teo_runtime/handler/default/
mod.rs

1mod internal;
2
3pub mod find_many;
4pub mod find_first;
5pub mod find_unique;
6pub mod create;
7pub mod update;
8pub mod upsert;
9pub mod delete;
10pub mod copy;
11pub mod copy_or_create;
12pub mod create_many;
13pub mod update_many;
14pub mod delete_many;
15pub mod copy_many;
16pub mod count;
17pub mod aggregate;
18pub mod group_by;
19
20pub use find_many::find_many;
21pub use find_first::find_first;
22pub use find_unique::find_unique;
23pub use create::create;
24pub use update::update;
25pub use upsert::upsert;
26pub use delete::delete;
27pub use copy::copy;
28pub use copy_or_create::copy_or_create;
29pub use create_many::create_many;
30pub use update_many::update_many;
31pub use delete_many::delete_many;
32pub use copy_many::copy_many;
33pub use count::count;
34pub use aggregate::aggregate;
35pub use group_by::group_by;