Skip to content
This repository has been archived by the owner on Oct 29, 2021. It is now read-only.

Commit

Permalink
*: move to go.transparencylog.com
Browse files Browse the repository at this point in the history
I am going to reserve .net for only beta/prod logs
  • Loading branch information
philips committed Aug 20, 2020
1 parent 819c594 commit 700707f
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Start by building the application.
FROM golang:1.14 as build

WORKDIR /go/src/go.transparencylog.net/tl
WORKDIR /go/src/go.transparencylog.com/tl
COPY . .

ENV GO111MODULE=on
Expand Down
2 changes: 1 addition & 1 deletion clientcache/badger/badger.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (

badger "github.com/dgraph-io/badger/v2"

"go.transparencylog.net/tl/sumdb"
"go.transparencylog.com/tl/sumdb"
)

var ErrNoKey = errors.New("key not set")
Expand Down
4 changes: 2 additions & 2 deletions cmd/cat/cat.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"strings"

"github.com/spf13/cobra"
"go.transparencylog.net/tl/config"
"go.transparencylog.net/tl/sumdb"
"go.transparencylog.com/tl/config"
"go.transparencylog.com/tl/sumdb"
)

var CatCmd = &cobra.Command{
Expand Down
4 changes: 2 additions & 2 deletions cmd/get/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (

"github.com/cavaliercoder/grab"
"github.com/spf13/cobra"
"go.transparencylog.net/tl/config"
"go.transparencylog.net/tl/sumdb"
"go.transparencylog.com/tl/config"
"go.transparencylog.com/tl/sumdb"
)

var GetCmd = &cobra.Command{
Expand Down
10 changes: 5 additions & 5 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ import (
"os"

"github.com/spf13/cobra"
"go.transparencylog.net/tl/cmd/cat"
"go.transparencylog.net/tl/cmd/get"
"go.transparencylog.net/tl/cmd/update"
"go.transparencylog.net/tl/cmd/verify"
"go.transparencylog.net/tl/cmd/version"
"go.transparencylog.com/tl/cmd/cat"
"go.transparencylog.com/tl/cmd/get"
"go.transparencylog.com/tl/cmd/update"
"go.transparencylog.com/tl/cmd/verify"
"go.transparencylog.com/tl/cmd/version"
)

// rootCmd represents the base command when called without any subcommands
Expand Down
4 changes: 2 additions & 2 deletions cmd/verify/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"strings"

"github.com/spf13/cobra"
"go.transparencylog.net/tl/config"
"go.transparencylog.net/tl/sumdb"
"go.transparencylog.com/tl/config"
"go.transparencylog.com/tl/sumdb"
)

var VerifyCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

"github.com/spf13/cobra"
"go.transparencylog.net/tl/config"
"go.transparencylog.com/tl/config"
)

var Cmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"

"github.com/mitchellh/go-homedir"
"go.transparencylog.net/tl/clientcache/badger"
"go.transparencylog.com/tl/clientcache/badger"
)

var Version string
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go.transparencylog.net/tl
module go.transparencylog.com/tl

go 1.14

Expand Down
6 changes: 3 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.

package main // import "go.transparencylog.net/tl"
package main // import "go.transparencylog.com/tl"

import (
"go.transparencylog.net/tl/cmd"
"go.transparencylog.net/tl/config"
"go.transparencylog.com/tl/cmd"
"go.transparencylog.com/tl/config"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion release
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ echo equinox release \
--token="${EQUINOX_TOKEN}" \
-- \
-ldflags \"-X main.version=$(git describe --tags) -X main.date=$(date +%Y-%m-%d) -X main.commit=$(git rev-parse HEAD)\" \
go.transparencylog.net/tl
go.transparencylog.com/tl

0 comments on commit 700707f

Please sign in to comment.