Skip to content

Commit

Permalink
adopting module
Browse files Browse the repository at this point in the history
  • Loading branch information
securitym0nkey committed Mar 12, 2024
1 parent d2256f6 commit b05be91
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
[![Go Reference](https://pkg.go.dev/badge/github.com/vjeantet/grok.svg)](https://pkg.go.dev/github.com/vjeantet/grok)
[![Build Status](https://travis-ci.org/vjeantet/grok.svg)](https://travis-ci.org/vjeantet/grok)
[![Coverage Status](https://coveralls.io/repos/vjeantet/grok/badge.png?branch=master)](https://coveralls.io/r/vjeantet/grok?branch=master)
[![Go Report Card](http://goreportcard.com/badge/vjeantet/grok)](http:/goreportcard.com/report/vjeantet/grok)
[![Documentation Status](https://readthedocs.org/projects/grok-lib-for-golang/badge/?version=latest)](https://readthedocs.org/projects/grok-lib-for-golang/?badge=latest)
[![Go Reference](https://pkg.go.dev/badge/github.com/securitym0nkey/grok.svg)](https://pkg.go.dev/github.com/securitym0nkey/grok)


# grok
Expand All @@ -12,12 +8,12 @@ A simple library to parse grok patterns with Go.
Make sure you have a working Go environment.

```sh
go get github.com/vjeantet/grok
go get github.com/securitym0nkey/grok
```

# Use in your project
```go
import "github.com/vjeantet/grok"
import "github.com/securitym0nkey/grok"
```

# Usage
Expand Down Expand Up @@ -45,7 +41,7 @@ package main
import (
"fmt"

"github.com/vjeantet/grok"
"github.com/securitym0nkey/grok"
)

func main() {
Expand Down Expand Up @@ -94,7 +90,7 @@ package main
import (
"fmt"

"github.com/vjeantet/grok"
"github.com/securitym0nkey/grok"
)

func main() {
Expand Down Expand Up @@ -129,7 +125,7 @@ package main
import (
"fmt"
"encoding/json"
"github.com/vjeantet/grok"
"github.com/securitym0nkey/grok"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"
"encoding/json"
"github.com/vjeantet/grok"
"github.com/securitym0nkey/grok"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/vjeantet/grok
module github.com/securitym0nkey/grok

go 1.15

0 comments on commit b05be91

Please sign in to comment.