diff --git a/migrations/20250215223128_create_processed_data_table.sql b/migrations/20250215223128_create_processed_data_table.sql deleted file mode 100644 index cc5715f..0000000 --- a/migrations/20250215223128_create_processed_data_table.sql +++ /dev/null @@ -1,6 +0,0 @@ --- Add migration script here -CREATE TABLE processed_data ( - id SERIAL PRIMARY KEY, - content TEXT NOT NULL, - created_at TIMESTAMP DEFAULT NOW() -); diff --git a/proto/api.proto b/proto/api.proto index 19031fb..99dd4b6 100644 --- a/proto/api.proto +++ b/proto/api.proto @@ -3,10 +3,6 @@ syntax = "proto3"; package multieko2; -service DataProcessor { - rpc ProcessData (DataRequest) returns (DataResponse); -} - service Adresar { rpc PostAdresar (PostAdresarRequest) returns (AdresarResponse); rpc GetAdresar (GetAdresarRequest) returns (AdresarResponse); @@ -82,14 +78,6 @@ message PutAdresarRequest { string fax = 16; } -message DataRequest { - string data = 1; -} - -message DataResponse { - string processed_data = 1; -} - message DeleteAdresarResponse { bool success = 1; // Indicates whether the deletion was successful } diff --git a/src/proto/descriptor.bin b/src/proto/descriptor.bin index 2455e49..2837708 100644 Binary files a/src/proto/descriptor.bin and b/src/proto/descriptor.bin differ