mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
15 lines
248 B
ObjectPascal
15 lines
248 B
ObjectPascal
|
program CustomAuthClient;
|
||
|
|
||
|
uses
|
||
|
Vcl.Forms,
|
||
|
MainClientFormU in 'MainClientFormU.pas' {Form7};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TForm7, Form7);
|
||
|
Application.Run;
|
||
|
end.
|