diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-12-26 16:37:32 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2014-12-26 16:37:32 +0000 |
commit | 0619322ea272cbc88784e992085b48f53cc2d5c5 (patch) | |
tree | 490167357fc7ece9b1cb823115562074087b8fe6 /lib | |
parent | f53c050507c5c84a552ef1211aa5c3cf742a9d0a (diff) | |
download | Nim-0619322ea272cbc88784e992085b48f53cc2d5c5.tar.gz |
Added warning to scgi module.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/scgi.nim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/pure/scgi.nim b/lib/pure/scgi.nim index 58b37833a..f3e2b583c 100644 --- a/lib/pure/scgi.nim +++ b/lib/pure/scgi.nim @@ -25,6 +25,10 @@ ## ## **Warning:** The API of this module is unstable, and therefore is subject ## to change. +## +## **Warning:** This module only supports the old asynchronous interface. +## You may wish to use the `asynchttpserver <asynchttpserver.html>`_ +## instead for web applications. include "system/inclrtl" |