xtool/contrib/mORMot/SQLite3/ServiceTestSQL3.dpr

15 lines
294 B
ObjectPascal

/// test the service remote control of the mORMotService unit
program ServiceTestSQL3;
uses
Forms,
ServiceTestForm in 'ServiceTestForm.pas' {MainServiceTest};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainServiceTest, MainServiceTest);
Application.Run;
end.