mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
19 lines
492 B
ObjectPascal
19 lines
492 B
ObjectPascal
|
program jsonrpcclientwithobjects;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
MainClientFormU in 'MainClientFormU.pas' {MainForm},
|
||
|
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(TMainForm, MainForm);
|
||
|
Application.Run;
|
||
|
end.
|