3 files changed, 3 insertions(+), 3 deletions(-)

M LICENSE
M README.md
M db_test.go
M LICENSE +1 -1
@@ 1,6 1,6 @@ 
 MIT License
 
-Copyright (c) 2022 ostafen
+Copyright (c) 2022 Sean E. Russell <ser@ser1.net>
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

          
M README.md +1 -1
@@ 35,7 35,7 @@ If you are really concerned about perfor
 ```go
 import (
 	"log"
-	c "github.com/ostafen/leaf"
+	c "ser1.net/leaf"
 )
 
 ...

          
M db_test.go +1 -1
@@ 9,8 9,8 @@ import (
 	"strings"
 	"testing"
 
-	c "github.com/ostafen/leaf"
 	"github.com/stretchr/testify/require"
+	c "ser1.net/leaf"
 )
 
 func runCloverTest(t *testing.T, jsonPath string, test func(t *testing.T, db *c.DB)) {