summary refs log tree commit diff stats
path: root/cmd/cetus/bpod.go
Commit message (Collapse)AuthorAgeFilesLines
* bpod: Re-enable cache & fix issues with v0.6.2Andinus2020-04-021-1/+21
|
* Drop response caching on bpodAndinus2020-03-261-83/+7
| | | | | | | | | | | | | | Caching on bpod was full of assumptions and very hacky, this commits removes it all. Images are still cached and we prepend the date to their file name so that it becomes easier to work with them later. Also they are seperated by a colon so it's easy to remove the date too with a script or something. BPOD is not even an official api and it can get closed anyday, bing uses this to get bpod on bing.com and we are just using it. They still have pretty pictures though and so I'll still keep it. If users want to get all information then they can just use -dump flag and save it to a file.
* Unmarshal after dumpAndinus2020-03-261-8/+5
| | | | | dump no longer exits the program, this doesn't make any different. We are still doing the same thing.
* Fix dump logicAndinus2020-03-261-1/+1
|
* Disable caching on random (bpod)Andinus2020-03-251-67/+11
|
* Disable cache when random is not passed (bpod)Andinus2020-03-251-8/+19
|
* Enable random flag and fix issue with body and res not in sync (bpod)Andinus2020-03-251-21/+31
|
* Disable random flag on bpod & warn in readmeAndinus2020-03-251-3/+17
|
* Describe bug in programAndinus2020-03-251-0/+7
|
* Add bpod supportAndinus2020-03-251-0/+203
|
* Reinitialize project and change module urlAndinus2020-03-241-148/+0
|
* Add notify functionality to cetusAndinus2020-03-231-0/+13
|
* Put the functions into seperate files & fix compile time errorAndinus2020-03-191-0/+135
Splitting the program into seperate programs will cause the binary size to double if the end user wants both services. Instead splitting the functions in seperate files will keep the binary size small for both services combined & also the program will be maintainable.
/a> 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286