delphimvcframework/samples/jsonrpc/jsonrpcclient.dpr
Daniele Teti 34bc5e0638 Added JSON-RPC Notification Support
Added IMVCJSONRPCExecutor for a simpler use of JSON-RPC servers
2018-05-16 19:46:35 +02:00

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.