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