mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 00:05:53 +01:00
16 lines
325 B
ObjectPascal
16 lines
325 B
ObjectPascal
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.
|