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