mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-09 06:52:43 +02:00
15 lines
209 B
ObjectPascal
15 lines
209 B
ObjectPascal
program demorestmodule;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
fphttpapp, dmmyrest, pqconnection;
|
|
|
|
begin
|
|
Application.Title:='httpproject1';
|
|
Application.Port:=8080;
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|