Skip to content

Commit

Permalink
Shorten module path, removing redundant /godbf sub-path.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lindsay Bradford committed Apr 13, 2023
1 parent 44b72f2 commit 3f655cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# go-dbf
[![Build Status](https://travis-ci.com/LindsayBradford/go-dbf.svg?branch=master)](https://travis-ci.com/LindsayBradford/go-dbf)
[![GoDoc](https://godoc.org/github.com/LindsayBradford/go-dbf/godbf?status.svg)](https://godoc.org/github.com/LindsayBradford/go-dbf/godbf)
[![GoDoc](https://godoc.org/github.com/LindsayBradford/go-dbfstatus.svg)](https://godoc.org/github.com/LindsayBradford/go-dbf)


A pure Go library for reading and writing [dBase/xBase](http://en.wikipedia.org/wiki/DBase#File_formats) database files
Expand All @@ -10,13 +10,13 @@ This project is a part of go-shp library. [go-shp](https://github.com/jonas-p/go
You can incorporate the library into your local workspace with the following 'go get' command:

```go
go get github.com/LindsayBradford/go-dbf/godbf
go get github.com/LindsayBradford/go-dbf
```

Code needing to call into the library needs to include the following import statement:
```go
import (
"github.com/LindsayBradford/go-dbf/godbf"
"github.com/LindsayBradford/go-dbf"
)
```

Expand Down
2 changes: 1 addition & 1 deletion godbf/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/LindsayBradford/go-dbf/godbf
module github.com/LindsayBradford/go-dbf

// To sync the vendor directory, run: go mod vendor from the directory housing this file.

Expand Down

0 comments on commit 3f655cf

Please sign in to comment.