Removed unused function

This commit is contained in:
Deluan 2020-08-13 23:58:46 -04:00 committed by Deluan Quintão
parent 278d0ea8f3
commit bc2073fbd5

View File

@ -1,13 +1,11 @@
package engine package engine
import ( import (
"context"
"fmt" "fmt"
"time" "time"
"github.com/deluan/navidrome/consts" "github.com/deluan/navidrome/consts"
"github.com/deluan/navidrome/model" "github.com/deluan/navidrome/model"
"github.com/deluan/navidrome/model/request"
) )
type Entry struct { type Entry struct {
@ -160,11 +158,3 @@ func FromArtists(ars model.Artists) Entries {
} }
return entries return entries
} }
func userName(ctx context.Context) string {
if user, ok := request.UserFrom(ctx); !ok {
return "UNKNOWN"
} else {
return user.UserName
}
}