diff --git a/README.md b/README.md index 36bd899..e911acd 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Mustache Template Engine for Go [![Build Status](https://img.shields.io/travis/cbroglie/mustache.svg)](https://travis-ci.org/cbroglie/mustache) -[![Go Doc](https://godoc.org/github.com/cbroglie/mustache?status.svg)](https://godoc.org/github.com/cbroglie/mustache) -[![Go Report Card](https://goreportcard.com/badge/github.com/cbroglie/mustache)](https://goreportcard.com/report/github.com/cbroglie/mustache) +[![Go Doc](https://godoc.org/github.com/verloop/mustache?status.svg)](https://godoc.org/github.com/verloop/mustache) +[![Go Report Card](https://goreportcard.com/badge/github.com/verloop/mustache)](https://goreportcard.com/report/github.com/verloop/mustache) [![codecov](https://codecov.io/gh/cbroglie/mustache/branch/master/graph/badge.svg)](https://codecov.io/gh/cbroglie/mustache) -[![Downloads](https://img.shields.io/github/downloads/cbroglie/mustache/latest/total.svg)](https://github.com/cbroglie/mustache/releases) -[![Latest release](https://img.shields.io/github/release/cbroglie/mustache.svg)](https://github.com/cbroglie/mustache/releases) +[![Downloads](https://img.shields.io/github/downloads/cbroglie/mustache/latest/total.svg)](https://github.com/verloop/mustache/releases) +[![Latest release](https://img.shields.io/github/release/cbroglie/mustache.svg)](https://github.com/verloop/mustache/releases) logo @@ -24,7 +24,7 @@ I forked [hoisie/mustache](https://github.com/hoisie/mustache) because it does n ## CLI Overview ```bash -➜ ~ go install github.com/cbroglie/mustache/cmd/mustache@latest +➜ ~ go install github.com/verloop/mustache/cmd/mustache@latest ➜ ~ mustache Usage: mustache [data] template [flags] @@ -64,7 +64,7 @@ Also check out some [example mustache files](http://github.com/mustache/mustache ## Installation -To install the CLI, run `go install github.com/cbroglie/mustache/cmd/mustache@latest`. To use it in a program, run `go get github.com/cbroglie/mustache` and use `import "github.com/cbroglie/mustache"`. +To install the CLI, run `go install github.com/verloop/mustache/cmd/mustache@latest`. To use it in a program, run `go get github.com/verloop/mustache` and use `import "github.com/verloop/mustache"`. ---- diff --git a/cmd/mustache/main.go b/cmd/mustache/main.go index 325c2dd..917849f 100644 --- a/cmd/mustache/main.go +++ b/cmd/mustache/main.go @@ -8,7 +8,7 @@ import ( "github.com/spf13/cobra" "gopkg.in/yaml.v2" - "github.com/cbroglie/mustache" + "github.com/verloop/mustache" ) var rootCmd = &cobra.Command{ diff --git a/go.mod b/go.mod index 93eb093..67c62d4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ -module github.com/cbroglie/mustache +module github.com/verloop/mustache -go 1.20 +go 1.21 require ( github.com/spf13/cobra v1.7.0