aboutsummaryrefslogtreecommitdiffstats
path: root/src/web_server.rs
Commit message (Collapse)AuthorAgeFilesLines
* Replace channels&locks with actors & log with slogJokler2020-10-151-18/+16
|
* Upgrade dependencies & use tokio 0.2 exclusivelyJokler2020-09-011-3/+3
|
* Run clippy and fmtJokler2020-08-191-3/+1
|
* 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.