get by position in general endpoint is now working properly well

This commit is contained in:
filipriec
2025-03-05 18:59:19 +01:00
parent 1a3c063fdd
commit c27fa586d3
6 changed files with 187 additions and 4 deletions

View File

@@ -4,9 +4,11 @@ pub mod put_table_data;
pub mod delete_table_data;
pub mod get_table_data;
pub mod get_table_data_count;
pub mod get_table_data_by_position;
pub use post_table_data::post_table_data;
pub use put_table_data::put_table_data;
pub use delete_table_data::delete_table_data;
pub use get_table_data::get_table_data;
pub use get_table_data_count::get_table_data_count;
pub use get_table_data_by_position::get_table_data_by_position;