mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
19 lines
385 B
ObjectPascal
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.
|