fpc/packages/fcl-web/examples/restbridge/delphiclient/sqldbrestclient.dpr
michael e726faca7c * Delphi rest client for REST bridge
git-svn-id: trunk@41437 -
2019-02-24 16:01:26 +00:00

15 lines
231 B
ObjectPascal

program sqldbrestclient;
uses
Vcl.Forms,
frmmain in 'frmmain.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.