mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
19 lines
451 B
ObjectPascal
19 lines
451 B
ObjectPascal
program jsonrpcclient_sync;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
MainClientFormU in 'MainClientFormU.pas' {MainForm},
|
|
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.
|