crystal-gauntlet/src/lib/songs.cr

15 lines
202 B
Crystal
Raw Normal View History

2022-12-31 14:25:43 +01:00
include CrystalGauntlet
module CrystalGauntlet::Songs
extend self
def is_custom_song(id)
id >= 50
end
def is_reuploaded_song(id)
# todo: make configurable
id >= 5000000
end
end