From 378facb96e877ed275a59d974ee9b69e06120a53 Mon Sep 17 00:00:00 2001 From: Shulhan Date: Fri, 10 Nov 2023 12:26:01 +0700 Subject: 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 --- example/client-auth/client-auth.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'example') 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() { -- cgit v1.3