delphimvcframework/samples/winecellarclient/WineCellarClient.dpr

16 lines
325 B
ObjectPascal
Raw Normal View History

2013-10-29 16:51:16 +01:00
program WineCellarClient;
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.