fpc/utils/pas2js/compileserver.pp
Mattias Gaertner f52ea868dd pas2js: compileserver: fall back mime.types
git-svn-id: trunk@41666 -
2019-03-10 08:11:33 +00:00

19 lines
276 B
ObjectPascal

program compileserver;
{$mode objfpc}
{$h+}
uses
{$IFDEF UNIX}cthreads,{$ENDIF} httpcompiler;
Var
Application : THTTPCompilerApplication;
begin
Application:=THTTPCompilerApplication.Create(Nil);
Application.Initialize;
Application.Run;
Application.Free;
end.