mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 02:31:45 +00:00
12 lines
175 B
JavaScript
12 lines
175 B
JavaScript
const CHANNEL = "downloader";
|
|
const ACTIONS = {
|
|
ERROR: "error",
|
|
METADATA: "metadata",
|
|
PROGRESS: "progress",
|
|
};
|
|
|
|
module.exports = {
|
|
CHANNEL: CHANNEL,
|
|
ACTIONS: ACTIONS,
|
|
};
|