-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a48566e
commit 2733406
Showing
20 changed files
with
187 additions
and
222 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
package internal | ||
|
||
const ( | ||
ErrAlreadyUpToDate = "Already up to date" | ||
ErrLoginFailed = "Login failed" | ||
ErrNoActiveDevice = "Player command failed: No active device found" | ||
ErrNoAlbums = "No albums found" | ||
ErrNoDevices = "No devices found" | ||
ErrNoPlaylists = "No playlists found" | ||
ErrNoPrevious = "No track before this one" | ||
ErrNotLoggedIn = `You are not logged in: Run "spotify login"` | ||
ErrRestrictionViolated = "Player command failed: Restriction violated" | ||
ErrSavePodcast = "Saving podcasts is not allowed" | ||
ErrAlbumNotFound = "album not found" | ||
ErrAlreadyUpToDate = "already up to date" | ||
ErrInvalidPlayArgs = "you may only pass args, --album, or --playlist" | ||
ErrLoginFailed = "login failed" | ||
ErrNoActiveDevice = "no active spotify session found" | ||
ErrNoDevices = "no devices found" | ||
ErrNoPlaylists = "no playlists found" | ||
ErrNoPrevious = "no track before this one" | ||
ErrNotLoggedIn = `you are not logged in, run "spotify login"` | ||
ErrPlaylistNotFound = "playlist not found" | ||
ErrRequestTimedOut = "request timed out" | ||
ErrSavePodcast = "saving podcasts is not allowed" | ||
ErrTrackNotFound = "track not found" | ||
) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.