Skip to content

Commit e9c4224

Browse files
authored
Change module path (#2)
1 parent 5786daf commit e9c4224

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
# onetimesecret
1+
# go-onetimesecret
22

3-
onetimesecret is a Go client for [One-Time Secret](https://onetimesecret.com). It includes a command-line interface, [ots](https://github.com/corbaltcode/onetimesecret/tree/main/cmd/ots).
3+
go-onetimesecret is a Go client for [One-Time Secret](https://onetimesecret.com). It includes a command-line interface, [ots](https://github.com/corbaltcode/go-onetimesecret/tree/main/cmd/ots).
44

55
## Installation
66

77
```
8-
$ go get github.com/corbaltcode/onetimesecret
8+
$ go get github.com/corbaltcode/go-onetimesecret
99
```
1010

1111
## Creating a Client
1212

1313
All operations are performed by calling methods on a `Client`. Create a `Client` by supplying your username (email) and password from [onetimesecret.com](https://onetimesecret.com).
1414

1515
```
16-
import ots "github.com/corbaltcode/onetimesecret"
16+
import ots "github.com/corbaltcode/go-onetimesecret"
1717
1818
client := ots.Client{
1919
Username: "[email protected]",
@@ -124,4 +124,4 @@ go test ./...
124124

125125
## Contributing
126126

127-
Submit issues and pull requests to [corbaltcode/onetimesecret](https://github.com/corbaltcode/onetimesecret) on GitHub.
127+
Submit issues and pull requests to [corbaltcode/go-onetimesecret](https://github.com/corbaltcode/go-onetimesecret) on GitHub.

cmd/ots/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ots is a command-line interface to [One-Time Secret](https://onetimesecret.com).
55
## Installation
66

77
```
8-
go install github.com/corbaltcode/onetimesecret/cmd/ots
8+
go install github.com/corbaltcode/go-onetimesecret/cmd/ots
99
```
1010

1111
## Setup

cmd/ots/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"time"
1818

1919
"github.com/BurntSushi/toml"
20-
ots "github.com/corbaltcode/onetimesecret"
20+
ots "github.com/corbaltcode/go-onetimesecret"
2121
"golang.org/x/term"
2222
)
2323

go.mod

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

33
go 1.17
44

0 commit comments

Comments
 (0)