mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
29f03e819e
FIX https://github.com/danieleteti/delphimvcframework/issues/160 FIX https://www.facebook.com/groups/delphimvcframework/?multi_permalinks=1951719131577883&comment_id=1952551261494670¬if_id=1542833848942998¬if_t=feedback_reaction_generic
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.
|