🐛 Fixed redundant static use case return

This commit is contained in:
Maxim Lebedev 2023-11-19 13:57:44 +06:00
parent b10c237f50
commit 5c75e6f9e9
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 1 additions and 1 deletions

View File

@ -28,5 +28,5 @@ func (ucase *staticUseCase) Do(ctx context.Context, p string) (*domain.Static, e
return nil, fmt.Errorf("cannot get static file: %w", err)
}
return s, rs, nil
return s, nil
}