mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 16:25:54 +01:00
17 lines
340 B
ObjectPascal
17 lines
340 B
ObjectPascal
|
program ChatClient;
|
||
|
|
||
|
uses
|
||
|
Forms,
|
||
|
MainFormClient in 'MainFormClient.pas' {Form5},
|
||
|
StompClient in '..\..\..\StompClient.pas',
|
||
|
StompTypes in '..\..\..\StompTypes.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TForm5, Form5);
|
||
|
Application.Run;
|
||
|
end.
|