Skip to content

Commit c7c92b9

Browse files
committed
wip
1 parent 19ee4b7 commit c7c92b9

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

go.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module ghfork
2+
3+
go 1.23.2
4+
5+
require github.com/go-logr/logr v1.4.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/go-logr/logr v1.4.0 h1:wx+BduGRXjIL6VPeeb7DRX+ii7sR/ch8DlRifHR589o=
2+
github.com/go-logr/logr v1.4.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=

main.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package main
2+
3+
import (
4+
"github.com/go-logr/logr"
5+
)
6+
7+
func main() {
8+
l := logr.Logger{}
9+
_ = l
10+
}

0 commit comments

Comments
 (0)