mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-16 08:26:59 +03:00
8 lines
199 B
JavaScript
8 lines
199 B
JavaScript
var postSkipSegments = require('./postSkipSegments.js');
|
|
|
|
module.exports = async function submitSponsorTimes(req, res) {
|
|
req.query.category = "sponsor";
|
|
|
|
return postSkipSegments(req, res);
|
|
}
|