Fix import paths

This commit is contained in:
James Mills 2021-07-13 08:31:38 +10:00
parent 1d522cc054
commit 773a608ba6
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -4,7 +4,7 @@ import (
"log"
"os"
"github.com/prologic/pastebin/client"
"git.mills.io/prologic/pastebin/client"
"github.com/namsral/flag"
)

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/prologic/pastebin
module git.mills.io/prologic/pastebin
go 1.16