Skip to content

Commit

Permalink
lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wyattchris committed Oct 7, 2024
1 parent cf00369 commit 194e1f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions backend/internal/storage/postgres/close.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package postgres

import "context"

func (db *DB) Close(ctx context.Context) {
func (db *DB) Close() {
db.conn.Close()
}
2 changes: 1 addition & 1 deletion backend/internal/storage/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

type Storage interface {
Close(context.Context)
Close()
Test
UserRating
Venues
Expand Down

0 comments on commit 194e1f4

Please sign in to comment.