teo_runtime/handler/default/
mod.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
mod internal;

pub mod find_many;
pub mod find_first;
pub mod find_unique;
pub mod create;
pub mod update;
pub mod upsert;
pub mod delete;
pub mod copy;
pub mod copy_or_create;
pub mod create_many;
pub mod update_many;
pub mod delete_many;
pub mod copy_many;
pub mod count;
pub mod aggregate;
pub mod group_by;

pub use find_many::find_many;
pub use find_first::find_first;
pub use find_unique::find_unique;
pub use create::create;
pub use update::update;
pub use upsert::upsert;
pub use delete::delete;
pub use copy::copy;
pub use copy_or_create::copy_or_create;
pub use create_many::create_many;
pub use update_many::update_many;
pub use delete_many::delete_many;
pub use copy_many::copy_many;
pub use count::count;
pub use aggregate::aggregate;
pub use group_by::group_by;