From 773a608ba698d077bab02acc49d06936c80b2846 Mon Sep 17 00:00:00 2001 From: James Mills Date: Tue, 13 Jul 2021 08:31:38 +1000 Subject: [PATCH] Fix import paths --- README.md | 6 +++--- cmd/pb/main.go | 2 +- go.mod | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3e7c0d8..aa0494e 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ [![Build Status](https://cloud.drone.io/api/badges/prologic/pastebin/status.svg)](https://cloud.drone.io/prologic/pastebin) [![CodeCov](https://codecov.io/gh/prologic/pastebin/branch/master/graph/badge.svg)](https://codecov.io/gh/prologic/pastebin) [![Go Report Card](https://goreportcard.com/badge/prologic/pastebin)](https://goreportcard.com/report/prologic/pastebin) -[![GoDoc](https://godoc.org/github.com/prologic/pastebin?status.svg)](https://godoc.org/github.com/prologic/pastebin) -[![Sourcegraph](https://sourcegraph.com/github.com/prologic/pastebin/-/badge.svg)](https://sourcegraph.com/github.com/prologic/pastebin?badge) +[![GoDoc](https://godoc.org/git.mills.io/prologic/pastebin?status.svg)](https://godoc.org/git.mills.io/prologic/pastebin) +[![Sourcegraph](https://sourcegraph.com/git.mills.io/prologic/pastebin/-/badge.svg)](https://sourcegraph.com/git.mills.io/prologic/pastebin?badge) pastebin is a self-hosted pastebin web app that lets you create and share "ephemeral" data between devices and users. There is a configurable expiry @@ -14,7 +14,7 @@ CLI for interacting with the service in a easy way or you can also use curl! ### Source ```#!bash -$ go get github.com/prologic/pastebin/... +$ go get git.mills.io/prologic/pastebin/... ``` ## Usage diff --git a/cmd/pb/main.go b/cmd/pb/main.go index d58b73b..ac9f012 100644 --- a/cmd/pb/main.go +++ b/cmd/pb/main.go @@ -4,7 +4,7 @@ import ( "log" "os" - "github.com/prologic/pastebin/client" + "git.mills.io/prologic/pastebin/client" "github.com/namsral/flag" ) diff --git a/go.mod b/go.mod index f053853..d979960 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/prologic/pastebin +module git.mills.io/prologic/pastebin go 1.16