Skip to content

Commit

Permalink
Fix linting errors for go1.17 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusor committed Feb 7, 2022
1 parent d81e069 commit a6a8e49
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions cookie.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !go1.11
// +build !go1.11

package sessions
Expand Down
1 change: 1 addition & 0 deletions cookie_go111.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build go1.11
// +build go1.11

package sessions
Expand Down
1 change: 1 addition & 0 deletions cookie_go111_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build go1.11
// +build go1.11

package sessions
Expand Down
1 change: 1 addition & 0 deletions options.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !go1.11
// +build !go1.11

package sessions
Expand Down
1 change: 1 addition & 0 deletions options_go111.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build go1.11
// +build go1.11

package sessions
Expand Down

0 comments on commit a6a8e49

Please sign in to comment.