Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
| :- module(http_statefull_server, | |
| [ server/0 | |
| ]). | |
| :- use_module(library(http/http_server)). | |
| :- use_module(library(http/http_session)). | |
| :- use_module(library(broadcast)). | |
| :- use_module(library(modules)). | |
| :- use_module(library(debug)). | |
| :- http_handler(root(.), http_redirect(moved, root(home)), []). |