mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
34bc5e0638
Added IMVCJSONRPCExecutor for a simpler use of JSON-RPC servers
18 lines
426 B
ObjectPascal
18 lines
426 B
ObjectPascal
program jsonrpcclient;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
MainClientFormU in 'MainClientFormU.pas' {Form10},
|
|
BusinessObjectsU in '..\commons\BusinessObjectsU.pas',
|
|
MVCFramework.JSONRPC.Client in '..\..\sources\MVCFramework.JSONRPC.Client.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm10, Form10);
|
|
Application.Run;
|
|
end.
|