commit 60ff664d3fc4dc5cd4ecd00508b8bcc752f73623
parent 5da5729018da121fbf30dd5b4ad1372ed26b623c
Author: Sean Enck <sean@ttypty.com>
Date: Tue, 12 Jul 2022 20:07:19 -0400
moved to github, use go 1.18
Diffstat:
7 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/cmd/lb-diff/main.go b/cmd/lb-diff/main.go
@@ -4,7 +4,7 @@ import (
"fmt"
"os"
- "voidedtech.com/lockbox/internal"
+ "github.com/enckse/lockbox/internal"
)
func main() {
diff --git a/cmd/lb-pwgen/main.go b/cmd/lb-pwgen/main.go
@@ -11,7 +11,7 @@ import (
"strings"
"time"
- "voidedtech.com/lockbox/internal"
+ "github.com/enckse/lockbox/internal"
)
const (
diff --git a/cmd/lb-rekey/main.go b/cmd/lb-rekey/main.go
@@ -5,7 +5,7 @@ import (
"fmt"
"strings"
- "voidedtech.com/lockbox/internal"
+ "github.com/enckse/lockbox/internal"
)
func main() {
diff --git a/cmd/lb-rw/main.go b/cmd/lb-rw/main.go
@@ -4,7 +4,7 @@ import (
"flag"
"fmt"
- "voidedtech.com/lockbox/internal"
+ "github.com/enckse/lockbox/internal"
)
func main() {
diff --git a/cmd/lb-totp/main.go b/cmd/lb-totp/main.go
@@ -10,7 +10,7 @@ import (
"time"
otp "github.com/pquerna/otp/totp"
- "voidedtech.com/lockbox/internal"
+ "github.com/enckse/lockbox/internal"
)
func getEnv() string {
diff --git a/cmd/lb/main.go b/cmd/lb/main.go
@@ -9,7 +9,7 @@ import (
"strings"
"time"
- "voidedtech.com/lockbox/internal"
+ "github.com/enckse/lockbox/internal"
)
var (
diff --git a/go.mod b/go.mod
@@ -1,6 +1,6 @@
-module voidedtech.com/lockbox
+module github.com/enckse/lockbox
-go 1.17
+go 1.18
require (
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510