Update import

Signed-off-by: jolheiser <john.olheiser@gmail.com>
pull/1/head
jolheiser 2020-02-20 10:52:29 -06:00
parent 45decbb778
commit 308b7c980f
No known key found for this signature in database
GPG Key ID: 83E486E71AFEB820
5 changed files with 10 additions and 6 deletions

View File

@ -10,4 +10,8 @@ lint:
.PHONY: fmt .PHONY: fmt
fmt: fmt:
$(GO) fmt ./... $(GO) fmt ./...
.PHONY: test
test:
$(GO) test -race ./...

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"os" "os"
"gitea.com/jolheiser/beaver" "go.jolheiser.com/beaver"
"gitea.com/jolheiser/beaver/color" "go.jolheiser.com/beaver/color"
) )
func main() { func main() {

2
go.mod
View File

@ -1,4 +1,4 @@
module gitea.com/jolheiser/beaver module go.jolheiser.com/beaver
go 1.12 go 1.12

View File

@ -5,7 +5,7 @@ import (
"strings" "strings"
"time" "time"
"gitea.com/jolheiser/beaver/color" "go.jolheiser.com/beaver/color"
) )
var bold = color.New(color.Bold) var bold = color.New(color.Bold)

View File

@ -8,7 +8,7 @@ import (
"strings" "strings"
"time" "time"
"gitea.com/jolheiser/beaver/color" "go.jolheiser.com/beaver/color"
) )
// Logger is a base Beaver logger // Logger is a base Beaver logger