This is the custom ROM list for every one wants to try or use. Collected and suggested by me and community (Will update more soon!). If you have any suggestion, comment bellow!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local http = require('coro-http') | |
local timer = require('timer') | |
local Readable = require('stream').Readable | |
local HTTPStream = Readable:extend() | |
function HTTPStream:initialize(method, url, headers, body, customOptions) | |
Readable.initialize(self, { objectMode = true }) | |
self.method = method | |
self.uri = http.parseUrl(url) |