Skip to content

Commit

Permalink
feat: MusicDeck의 Publisher에 관한 프로퍼티 직관적인 이름으로 수정하기 (boostcampwm-2024#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
windowcow committed Nov 14, 2024
1 parent dccba79 commit 09c1b80
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Molio/Source/Domain/Entity/MusicDeck/MusicDeck.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import Foundation
import Combine

protocol MusicDeck {
func musicPublisher(at: Int) -> AnyPublisher<RandomMusic?, Never>
var currentMusicTrackModelPublisher: AnyPublisher<RandomMusic?, Never> { get }

var nextMusicTrackModelPublisher: AnyPublisher<RandomMusic?, Never> { get }

func likeCurrentMusic()

Expand Down

0 comments on commit 09c1b80

Please sign in to comment.