fix docker build path

This commit is contained in:
2024-12-08 16:09:08 +01:00
parent 033e596c21
commit 9d3af3a8eb
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ type OsuApiClient struct {
func NewOsuApiClient(user User) (*OsuApiClient, error) {
if user.Token == (Token{}) {
return nil, errors.New("No Valid Credentials")
return nil, errors.New("no valid credentials")
}
if time.Now().After(user.ExpireDate) {