about summary refs log tree commit diff stats
path: root/http.go
Commit message (Collapse)AuthorAgeFilesLines
* cache.yoink(requestPath) now returns both the rawBen Morrison2020-05-091-6/+3
| | | | | | | | response body from the cache and the expiration time formatted as an rfc1123 datetime. added a default clause to cache.bap(requestPath) that responds with a failure state if an invalid query type has been requested.
* eliminated discrete handler for index pageBen Morrison2020-05-091-27/+5
|
* consolidating functionality to a single handlerBen Morrison2020-05-091-18/+11
| | | | also, making cache interaction more generic.
* moved endpoint files out of internal moduleBen Morrison2020-05-081-8/+6
|
* unifying cache checksBen Morrison2020-05-071-1/+1
|
* index page is cachingBen Morrison2020-05-071-2/+11
|
* added handler for /Ben Morrison2020-05-071-0/+17
|
* stubbing out endpointsBen Morrison2020-05-071-4/+34
|
* one validation function that branches off. be easier to test later.Ben Morrison2020-05-061-12/+16
|
* stubbing out the HTTP serverBen Morrison2020-05-051-0/+37
Right now it won't do much. Working on parsing the request and routing it to the right place.
> 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220