Skip to content

Commit 6a2cb3f

Browse files
committed
all: setting up go modules
1 parent d1553a7 commit 6a2cb3f

5 files changed

Lines changed: 23 additions & 146 deletions

File tree

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Dependency directories (remove the comment below to include it)
15+
# vendor/
16+
17+
dataurl

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Data URL Schemes for Go [![wercker status](https://app.wercker.com/status/6f9a2e144dfcc59e862c52459b452928/s "wercker status")](https://app.wercker.com/project/bykey/6f9a2e144dfcc59e862c52459b452928) [![GoDoc](https://godoc.org/github.com/vincent-petithory/dataurl?status.png)](https://godoc.org/github.com/vincent-petithory/dataurl)
1+
Forked from @vincent-petithory
22

33
This package parses and generates Data URL Schemes for the Go language, according to [RFC 2397](http://tools.ietf.org/html/rfc2397).
44

@@ -13,7 +13,7 @@ Common use-cases:
1313

1414
Install the package with:
1515
~~~
16-
go get github.com/vincent-petithory/dataurl
16+
go get github.com/GlassProtocol/dataurl
1717
~~~
1818

1919
## Usage
@@ -22,7 +22,7 @@ go get github.com/vincent-petithory/dataurl
2222
package main
2323

2424
import (
25-
"github.com/vincent-petithory/dataurl"
25+
"github.com/GlassProtocol/dataurl"
2626
"fmt"
2727
)
2828

cmd/dataurl/main.go

Lines changed: 0 additions & 142 deletions
This file was deleted.

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/GlassProtocol/dataurl
2+
3+
go 1.16

wercker.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)