playper/src/swapper.cr
2023-01-29 21:58:13 -06:00

14 lines
624 B
Crystal

# Actual swaping of playlist from one format to another
# Different cases for different hosts
# Make use of the metadata class for concurrency
# This is the main an crucial part of the problem, expected input in one format and output in the other.
# As such variables of the input and output are required, metadata (type/platform) and data (Actual playlist) of it.
# Here all the data has to be abstracted to only have an array containing a "ultimate list" that is interchangeable depending on the output
# We need to check the APIs first to see how to proceed best with the issue
require "./bridges/*"
class Swapper
end