Skip to content
This repository has been archived by the owner on Aug 7, 2022. It is now read-only.

Commit

Permalink
refactor: add param name
Browse files Browse the repository at this point in the history
  • Loading branch information
tuongaz committed Aug 4, 2022
1 parent afdc2b8 commit 1746e7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion persistent/persistent.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Persistent interface {
Get(ctx context.Context, key string) (any, error)

GetInt(ctx context.Context, key string) (int, error)
Increment(_ context.Context, key string) (int, error)
Increment(ctx context.Context, key string) (int, error)

SetActiveSession(ctx context.Context, mockID string, sessionID string) error
GetActiveSession(ctx context.Context, mockID string) (string, error)
Expand Down

0 comments on commit 1746e7f

Please sign in to comment.