dumbmoron a2216510b7 add cookie support
usage:
 - create cookies.json file somewhere, preferrably outside cobalt directory
 - in docker, you can bind mount it (`volumes` in composefile)
   - if you don't want cobalt to update the cookies, set it to `:ro` (cobalt will print a warning about this, ignore it)
 - set COOKIE_PATH to the absolute path of this file
 - enjoy?

usage in services: probably the simplest api ever
 - import { getCookie, updateCookie } from '../../cookie/manager.js';
 - const cookie = getCookie('<service_name>');
   - add this to headers - `headers: { cookie }`
 - after fetch is done, save potential cookie updates: updateCookie(cookie, fetch.headers)
 - see instagram.js for example usage
2023-08-16 19:59:33 +00:00
..
5.0
2023-02-13 19:44:58 +06:00
2023-08-16 19:59:33 +00:00
2023-06-05 11:27:43 +06:00
2023-08-05 00:43:12 +06:00
2023-03-15 22:18:31 +06:00
2023-03-15 22:18:31 +06:00
2023-04-29 22:26:49 +06:00
2023-05-08 14:40:38 +06:00