Created
December 15, 2015 12:33
-
-
Save eofster/d0bab0d52c3e8db40992 to your computer and use it in GitHub Desktop.
Interactor for updating GPS track name in the store
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class TrackNameUpdateInteractor { | |
let repository: TrackRepository | |
init(repository: TrackRepository) { | |
self.repository = repository | |
} | |
} | |
extension TrackNameUpdateInteractor: Interactor { | |
func execute() { | |
// Implement business logic for updating track name using track repository. | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment