remove the example-based folder. The code is still in the archive

This commit is contained in:
Krasimir Angelov
2018-11-28 14:34:15 +01:00
parent 69ad1e617e
commit 05c2cfb628
5 changed files with 0 additions and 741 deletions

View File

@@ -1,15 +0,0 @@
{-# LANGUAGE CPP #-}
import Control.Concurrent(forkIO)
import Network.FastCGI(runFastCGI,runFastCGIConcurrent')
import ExampleService(cgiMain,newPGFCache)
main = do --stderrToFile logFile
fcgiMain =<< newPGFCache
fcgiMain cache =
#ifndef mingw32_HOST_OS
runFastCGIConcurrent' forkIO 100 (cgiMain cache)
#else
runFastCGI (cgiMain cache)
#endif