Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fee55ef

Browse files
committedJan 24, 2023
kaizen: vanity import path
Signed-off-by: Tim Bray <tbray@textuality.com>
1 parent 59be90e commit fee55ef

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎.github/workflows/benchmarks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
id: go
3030

3131
- name: Run benchmark
32-
run: go test -benchmem -run="^$" -bench "^Benchmark" . github.com/timbray/quamina | tee output.txt
32+
run: go test -benchmem -run="^$" -bench "^Benchmark" . quamina.net/go/quamina | tee output.txt
3333

3434
- name: Download previous benchmark data
3535
uses: actions/cache@58c146cc91c5b9e778e71775dfe9bf1442ad9a12

‎example_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/timbray/quamina"
7+
"quamina.net/go/quamina"
88
)
99

1010
const userRegisteredEvent = `{

‎external_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package quamina_test
33
import (
44
"testing"
55

6-
"github.com/timbray/quamina"
6+
"quamina.net/go/quamina"
77
)
88

99
type fakeFlattener struct {

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/timbray/quamina
1+
module quamina.net/go/quamina
22

33
go 1.18

0 commit comments

Comments
 (0)
Please sign in to comment.