aboutsummaryrefslogtreecommitdiff
path: root/example/client-auth/client-auth.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2023-11-10 12:26:01 +0700
committerShulhan <ms@kilabit.info>2023-11-10 12:53:36 +0700
commit378facb96e877ed275a59d974ee9b69e06120a53 (patch)
treefe930c06d3d306c872c15bf36d74a24dbb35a993 /example/client-auth/client-auth.go
parentd7ae2721b8268b1e2880656504f41d4ae94c902b (diff)
downloadeasypki-378facb96e877ed275a59d974ee9b69e06120a53.tar.xz
all: fork of unmaintained "github.com/google/easypki"
Changes, * Add Go module * replace "github.com/codegangsta/cli" with "github.com/urfave/cli" * Changes import path to this repository using the following command, $ find . -type f -name "*.go" \ | xargs sed -i "s#github.com/google/easypki#git.sr.ht/~shulhan/easypki#g" * Reformat all files using goimports * Remove reference to Travis and CodeCov
Diffstat (limited to 'example/client-auth/client-auth.go')
-rw-r--r--example/client-auth/client-auth.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/example/client-auth/client-auth.go b/example/client-auth/client-auth.go
index 8b1e4bf..a28904d 100644
--- a/example/client-auth/client-auth.go
+++ b/example/client-auth/client-auth.go
@@ -10,11 +10,11 @@ import (
"os"
"time"
+ "git.sr.ht/~shulhan/easypki/pkg/certificate"
+ "git.sr.ht/~shulhan/easypki/pkg/easypki"
+ "git.sr.ht/~shulhan/easypki/pkg/store"
"github.com/boltdb/bolt"
"github.com/go-yaml/yaml"
- "github.com/google/easypki/pkg/certificate"
- "github.com/google/easypki/pkg/easypki"
- "github.com/google/easypki/pkg/store"
)
func main() {