aboutsummaryrefslogtreecommitdiffstats
path: root/src/web_server.rs
Commit message (Collapse)AuthorAgeFilesLines
* Improve the default website somewhatJokler2020-06-041-2/+2
|
* Move web server related files into a folderJokler2020-02-221-1/+1
|
* Webserver: Add API documentation and basic cssJokler2020-02-221-0/+12
|
* Split web_server module into separate componentsJokler2020-02-221-162/+23
|
* Add tmtu mode as a front-endJokler2020-02-221-3/+101
|
* Add a json /api/bots endpoint for data retrievalJokler2020-02-221-14/+76
|
* Add a very basic template using available infoJokler2020-02-221-17/+46
|
* Spawn actix-web server with access to the botJokler2020-02-221-0/+60
Additionally replace all Mutexes with RwLocks. Hopefully this makes it possible for the web server to serve many requests at once since they would just hold read locks.