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
1 changed files with 0 additions and 10 deletions

View File

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