delphimvcframework/samples/wincellarclient_withrestadapter/WineCellarClientRESTAdapter.dpr
2016-11-07 14:52:32 +01:00

19 lines
385 B
ObjectPascal

program WineCellarClientRESTAdapter;
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.