mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
17 lines
385 B
ObjectPascal
17 lines
385 B
ObjectPascal
program WineCellarClientLiveBinding;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
MainFormU in 'MainFormU.pas' {Form5},
|
|
MVCFramework.RESTClient in '..\..\sources\MVCFramework.RESTClient.pas',
|
|
WinesBO in '..\winecellarserver\WinesBO.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm5, Form5);
|
|
Application.Run;
|
|
end.
|