diff --git a/README.md b/README.md index 2a552ca..f464cd1 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,15 @@ A package for parsing Dutch Smart Meter Requirements (DSMR) telegram data. -[![Latest Release](https://img.shields.io/github/release/mijnverbruik/dsmr.svg?style=flat-square)](https://github.com/mijnverbruik/dsmr/releases) -[![Build Status](https://img.shields.io/github/actions/workflow/status/mijnverbruik/dsmr/test.yml?style=flat-square&branch=main)](https://github.com/mijnverbruik/dsmr/actions?query=workflow%3Atest) -[![MIT license](https://img.shields.io/github/license/mijnverbruik/dsmr.svg?style=flat-square)](https://github.com/mijnverbruik/dsmr/blob/main/LICENSE) -[![PkgGoDev](https://pkg.go.dev/badge/github.com/mijnverbruik/dsmr)](https://pkg.go.dev/github.com/mijnverbruik/dsmr) +[![Latest Release](https://img.shields.io/github/release/robinvdvleuten/dsmr.svg?style=flat-square)](https://github.com/robinvdvleuten/dsmr/releases) +[![Build Status](https://img.shields.io/github/actions/workflow/status/robinvdvleuten/dsmr/test.yml?style=flat-square&branch=main)](https://github.com/robinvdvleuten/dsmr/actions?query=workflow%3Atest) +[![MIT license](https://img.shields.io/github/license/robinvdvleuten/dsmr.svg?style=flat-square)](https://github.com/robinvdvleuten/dsmr/blob/main/LICENSE) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/robinvdvleuten/dsmr)](https://pkg.go.dev/github.com/robinvdvleuten/dsmr) ## Usage ```go -import "github.com/mijnverbruik/dsmr" +import "github.com/robinvdvleuten/dsmr" raw := "" + "/ISk5\\2MT382-1000\r\n" + @@ -61,15 +61,15 @@ telegram, err := dsmr.ParseString(raw) Everyone is encouraged to help improve this project. Here are a few ways you can help: -- [Report bugs](https://github.com/mijnverbruik/dsmr/issues) -- Fix bugs and [submit pull requests](https://github.com/mijnverbruik/dsmr/pulls) +- [Report bugs](https://github.com/robinvdvleuten/dsmr/issues) +- Fix bugs and [submit pull requests](https://github.com/robinvdvleuten/dsmr/pulls) - Write, clarify, or fix documentation - Suggest or add new features To get started with development: ``` -git clone https://github.com/mijnverbruik/dsmr.git +git clone https://github.com/robinvdvleuten/dsmr.git cd dsmr go test ./... ``` diff --git a/_examples/main.go b/_examples/main.go index 15d445b..d653aad 100644 --- a/_examples/main.go +++ b/_examples/main.go @@ -2,7 +2,7 @@ package main import ( "github.com/alecthomas/repr" - "github.com/mijnverbruik/dsmr" + "github.com/robinvdvleuten/dsmr" ) func main() { diff --git a/go.mod b/go.mod index 657355f..2664701 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/mijnverbruik/dsmr +module github.com/robinvdvleuten/dsmr go 1.19