summaryrefslogtreecommitdiff
path: root/packages/fcl-web/examples/fptemplate/listrecords/fcgi/listrecords.lpr
blob: c38d1c2f464665e471cdb8bf5d44f419434bbb50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
program listrecords;

{$mode objfpc}{$H+}

uses
  fpFCGI, webmodule;

{$R *.res}

begin
  Application.Port:=2015;//Port the FCGI application is listening on
  Application.Initialize;
  Application.Run;
end.