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

16 lines
313 B
ObjectPascal

program WineCellarVCLClient;
uses
Vcl.Forms,
MainFormU in 'MainFormU.pas' {Form5},
MVCFramework.RESTClient in '..\..\sources\MVCFramework.RESTClient.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm5, Form5);
Application.Run;
end.