Podcast scrobbling

This commit is contained in:
2023-12-02 13:55:22 +11:00
parent c0c50bc107
commit 731529ddb5
8 changed files with 203 additions and 118 deletions

View File

@@ -0,0 +1,11 @@
# frozen_string_literal: true
module Adamantium
module Relations
class PodcastScrobbles < ROM::Relation[:sql]
schema :podcast_scrobbles, infer: true
auto_struct(true)
end
end
end