Implemented service edit command

This commit is contained in:
Philipp Wolfer 2023-12-08 08:38:17 +01:00
parent c6c0723e27
commit 58a47a43e7
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
15 changed files with 213 additions and 57 deletions

View file

@ -43,8 +43,8 @@ type LastfmApiBackend struct {
func (b *LastfmApiBackend) Name() string { return "lastfm" }
func (b *LastfmApiBackend) Options() *[]models.BackendOption {
return &[]models.BackendOption{{
func (b *LastfmApiBackend) Options() []models.BackendOption {
return []models.BackendOption{{
Name: "username",
Label: "User name",
Type: models.String,