delphimvcframework/samples/jsonrpc/jsonrpcclient.dpr
Daniele Teti 70c1e55e94 New MVCActiveRecord showcase samples
New Unit Tests for Compression in TRESTClient
Updated RQL Parser and compilers
New EntitiesGenerator (alpha)
Improved unittests
Updated landing page
2018-10-23 16:18:50 +02:00

19 lines
475 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',
RandomUtilsU in '..\commons\RandomUtilsU.pas';
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm10, Form10);
Application.Run;
end.