Skip to content

Commit de7323c

Browse files
committed
move package to flowexec org
1 parent 6b1bd6e commit de7323c

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Vault
22

33
<p>
4-
<a href="https://img.shields.io/github/v/release/jahvon/vault"><img src="https://img.shields.io/github/v/release/jahvon/vault" alt="GitHub release"></a>
5-
<a href="https://pkg.go.dev/github.com/jahvon/vault"><img src="https://pkg.go.dev/badge/github.com/jahvon/vault.svg" alt="Go Reference"></a>
4+
<a href="https://img.shields.io/github/v/release/flowexec/vault"><img src="https://img.shields.io/github/v/release/flowexec/vault" alt="GitHub release"></a>
5+
<a href="https://pkg.go.dev/github.com/flowexec/vault"><img src="https://pkg.go.dev/badge/github.com/flowexec/vault.svg" alt="Go Reference"></a>
66
</p>
77

88
A Go package for secure secret storage with multiple encryption backends. Made for [flow](https://github.com/jahvon/flow) but can be used independently.
@@ -14,7 +14,7 @@ package main
1414

1515
import (
1616
"fmt"
17-
"github.com/jahvon/vault"
17+
"github.com/flowexec/vault"
1818
)
1919

2020
func main() {

aes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
"gopkg.in/yaml.v3"
1212

13-
"github.com/jahvon/vault/crypto"
13+
"github.com/flowexec/vault/crypto"
1414
)
1515

1616
const (

aes_key.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"path/filepath"
77
"strings"
88

9-
"github.com/jahvon/vault/crypto"
9+
"github.com/flowexec/vault/crypto"
1010
)
1111

1212
type KeyResolver struct {

aes_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/jahvon/vault"
10-
"github.com/jahvon/vault/crypto"
9+
"github.com/flowexec/vault"
10+
"github.com/flowexec/vault/crypto"
1111
)
1212

1313
func TestAESKeyGeneration(t *testing.T) {

age_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"testing"
88

9-
"github.com/jahvon/vault"
9+
"github.com/flowexec/vault"
1010
)
1111

1212
func TestAgeIdentityResolver(t *testing.T) {

crypto/crypto_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/jahvon/vault/crypto"
7+
"github.com/flowexec/vault/crypto"
88
)
99

1010
func TestGenerateKey(t *testing.T) {
File renamed without changes.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/jahvon/vault
1+
module github.com/flowexec/vault
22

33
go 1.24
44

vault_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/jahvon/vault"
11+
"github.com/flowexec/vault"
1212
)
1313

1414
func TestVaultInterface(t *testing.T) {

0 commit comments

Comments
 (0)