feat: Add Be and tbd skill, also added Roadmap file

This commit is contained in:
2026-05-10 16:32:12 -04:00
parent 3500ade13f
commit 0bb8885802
29587 changed files with 10611695 additions and 0 deletions

26
Skills/@be/node_modules/icecast/lib/request.js generated vendored Normal file
View File

@@ -0,0 +1,26 @@
/**
* Module dependencies.
*/
var Client = require('./client');
/**
* Module exports.
*/
module.exports = request;
/**
* `request()` convenience function. Similar to node core's
* [`http.request()`](http://nodejs.org/docs/latest/api/http.html#http_http_request_options_callback),
* except it returns an `icecast.Client` instance.
*
* @param {Object} options connection info and options object
* @param {Function} cb optional callback function for the "response" event
* @api public
*/
function request (options, fn) {
return new Client(options, fn);
};