delphimvcframework/samples/WineCellarSample/winecellarclient_mobile_withrestadapter/WineCellarMobileClientWithRESTAdapter.dpr
2023-02-02 19:14:34 +01:00

19 lines
377 B
ObjectPascal

program WineCellarMobileClientWithRESTAdapter;
uses
System.StartUpCopy,
FMX.Forms,
MainFMX in 'MainFMX.pas' {TabbedForm},
RESTServicesU in 'RESTServicesU.pas',
WinesBO in '..\winecellarserver\WinesBO.pas';
{$R *.res}
begin
ReportMemoryLeaksOnShutdown := true;
Application.Initialize;
Application.CreateForm(TTabbedForm, TabbedForm);
Application.Run;
end.