mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
19 lines
380 B
ObjectPascal
19 lines
380 B
ObjectPascal
|
program WineCellarClientRESTAdapter;
|
||
|
|
||
|
uses
|
||
|
System.StartUpCopy,
|
||
|
FMX.Forms,
|
||
|
MainFMX in 'MainFMX.pas' {TabbedForm} ,
|
||
|
RESTServicesU in 'RESTServicesU.pas',
|
||
|
WinesBO in '..\winecellar\WinesBO.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
ReportMemoryLeaksOnShutdown := true;
|
||
|
Application.Initialize;
|
||
|
Application.CreateForm(TTabbedForm, TabbedForm);
|
||
|
Application.Run;
|
||
|
|
||
|
end.
|