Package Zearch Temp Implementation

* Adds Basic form
* Adds Unit Classes
* Adds API Request option


Signed-off-by: Indrajith K L <indrajith@indrajith.dev>
This commit is contained in:
2025-05-28 00:24:49 +05:30
commit c09c434653
24 changed files with 1134 additions and 0 deletions

31
backup/threadunit.pas Normal file
View File

@@ -0,0 +1,31 @@
unit ThreadUnit;
{$mode ObjFPC}{$H+}
interface
uses
Classes, SysUtils, Dialogs;
type
{ThreadClass}
ThreadClass = class
public
constructor create();
end;
implementation
constructor ThreadClass.create();
begin
ShowMessage("Hello from Another Unit");
end;
end.