Skip to content

Commit

Permalink
Transfer project to personal repo
Browse files Browse the repository at this point in the history
  • Loading branch information
robinvdvleuten committed Mar 13, 2024
1 parent 7a7099d commit 4f40f74
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" +
Expand Down Expand Up @@ -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 ./...
```
Expand Down
2 changes: 1 addition & 1 deletion _examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"github.com/alecthomas/repr"
"github.com/mijnverbruik/dsmr"
"github.com/robinvdvleuten/dsmr"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/mijnverbruik/dsmr
module github.com/robinvdvleuten/dsmr

go 1.19

Expand Down

0 comments on commit 4f40f74

Please sign in to comment.