mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-17 00:35:55 +01:00
16 lines
339 B
ObjectPascal
16 lines
339 B
ObjectPascal
program udp_syslog;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
UDPServerClientForm in 'UDPServerClientForm.pas' {FUDPServerClientForm},
|
|
LoggerProConfig in 'LoggerProConfig.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TFUDPServerClientForm, FUDPServerClientForm);
|
|
Application.Run;
|
|
end.
|