mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
10 lines
129 B
JavaScript
10 lines
129 B
JavaScript
const CHANNEL = "downloader";
|
|
const ACTIONS = {
|
|
ERROR: "error",
|
|
};
|
|
|
|
module.exports = {
|
|
CHANNEL: CHANNEL,
|
|
ACTIONS: ACTIONS,
|
|
};
|