Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/hscells/doi

Parse and check doi objects in go.
https://github.com/hscells/doi

doi go golang parser

Last synced: about 1 month ago
JSON representation

Parse and check doi objects in go.

Lists

README

        

# doi

[![GoDoc](https://godoc.org/github.com/hscells/doi?status.svg)](https://godoc.org/github.com/hscells/doi)

_dealing with dois in go_

## Usage

```go
d, err := doi.Parse("11.1038/123456")
if err != nil {
println(d.ToString())
}
if d.IsValid() {
println("We are happy!")
}
```