Skip to content

Commit e086b11

Browse files
author
mitchep1
committed
Post-transfer module fix
1 parent e0d0ded commit e086b11

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# 📺 go-pic
22
COBOL PIC (Picture) clause parsing library
33

4-
[![Go Report Card](https://goreportcard.com/badge/github.com/pgmitche/go-pic)](https://goreportcard.com/report/github.com/pgmitche/go-pic)
5-
[![GoDoc](https://pkg.go.dev/badge/github.com/pgmitche/go-pic?status.svg)](https://pkg.go.dev/github.com/pgmitche/go-pic?tab=doc)
6-
[![Sourcegraph](https://sourcegraph.com/github.com/pgmitche/go-pic/-/badge.svg)](https://sourcegraph.com/github.com/pgmitche/go-pic?badge)
7-
[![Release](https://img.shields.io/github/release/pgmitche/go-pic.svg?style=flat-square)](https://github.com/pgmitche/go-pic/releases)
8-
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/pgmitche/go-pic/blob/master/LICENSE)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/foundatn-io/go-pic)](https://goreportcard.com/report/github.com/foundatn-io/go-pic)
5+
[![GoDoc](https://pkg.go.dev/badge/github.com/foundatn-io/go-pic?status.svg)](https://pkg.go.dev/github.com/foundatn-io/go-pic?tab=doc)
6+
[![Sourcegraph](https://sourcegraph.com/github.com/foundatn-io/go-pic/-/badge.svg)](https://sourcegraph.com/github.com/foundatn-io/go-pic?badge)
7+
[![Release](https://img.shields.io/github/release/foundatn-io/go-pic.svg?style=flat-square)](https://github.com/foundatn-io/go-pic/releases)
8+
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/foundatn-io/go-pic/blob/master/LICENSE)
99

1010
## 🤷🏽‍ What is go-pic
1111

@@ -24,7 +24,7 @@ copybook
2424

2525
```go
2626
import (
27-
pic "github.com/pgmitche/go-pic"
27+
pic "github.com/foundatn-io/go-pic"
2828
)
2929
```
3030

@@ -68,7 +68,7 @@ copybook
6868
Get started using `gopic` by for struct generation by running:
6969

7070
```shell script
71-
git clone github.com/pgmitche/go-pic
71+
git clone github.com/foundatn-io/go-pic
7272
cd go-pic
7373
make install
7474
```

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/pgmitche/go-pic/cmd/pkg/cli"
7+
"github.com/foundatn-io/go-pic/cmd/pkg/cli"
88
)
99

1010
func main() {

cmd/pkg/cli/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ import (
1212

1313
"github.com/spf13/cobra"
1414

15-
"github.com/pgmitche/go-pic/cmd/pkg/copybook"
16-
"github.com/pgmitche/go-pic/cmd/pkg/template"
17-
"github.com/pgmitche/go-pic/pkg/lex"
15+
"github.com/foundatn-io/go-pic/cmd/pkg/copybook"
16+
"github.com/foundatn-io/go-pic/cmd/pkg/template"
17+
"github.com/foundatn-io/go-pic/pkg/lex"
1818
)
1919

2020
var rootCmd = &cobra.Command{

cmd/pkg/copybook/copybook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"strings"
1111
"text/template"
1212

13-
"github.com/pgmitche/go-pic/pkg/lex"
13+
"github.com/foundatn-io/go-pic/pkg/lex"
1414
)
1515

1616
type Copybook struct {

cmd/pkg/copybook/copybook_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/stretchr/testify/require"
1111

12-
"github.com/pgmitche/go-pic/cmd/pkg/template"
13-
"github.com/pgmitche/go-pic/pkg/lex"
12+
"github.com/foundatn-io/go-pic/cmd/pkg/template"
13+
"github.com/foundatn-io/go-pic/pkg/lex"
1414
)
1515

1616
func Test_Build(t *testing.T) {

cmd/pkg/template/template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"regexp"
88
"text/template"
99

10-
"github.com/pgmitche/go-pic/pkg/lex"
10+
"github.com/foundatn-io/go-pic/pkg/lex"
1111
)
1212

1313
var (

example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"io/ioutil"
1313
"os"
1414

15-
"github.com/pgmitche/go-pic"
15+
"github.com/foundatn-io/go-pic"
1616
)
1717

1818
func main() {

example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"log"
77
"os"
88

9-
"github.com/pgmitche/go-pic"
9+
"github.com/foundatn-io/go-pic"
1010
)
1111

1212
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/pgmitche/go-pic
1+
module github.com/foundatn-io/go-pic
22

33
go 1.14
44

0 commit comments

Comments
 (0)