mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
20 lines
530 B
ObjectPascal
20 lines
530 B
ObjectPascal
program jsonrpcclientwithobjects;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
MainClientFormU in 'MainClientFormU.pas' {MainForm},
|
|
MVCFramework.JSONRPC.Client in '..\..\sources\MVCFramework.JSONRPC.Client.pas',
|
|
RandomUtilsU in '..\commons\RandomUtilsU.pas',
|
|
BusinessObjectsU in '..\commons\BusinessObjectsU.pas',
|
|
CommonTypesU in 'CommonTypesU.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|