Use go modules

This commit is contained in:
Daniel Sonck 2020-09-03 21:44:06 +02:00
parent 130934ac5d
commit d845324160
No known key found for this signature in database
GPG key ID: 212CF540404BE730
6 changed files with 17 additions and 6 deletions

View file

@ -8,7 +8,7 @@ import (
"runtime/pprof"
"time"
"github.com/zyxar/tta"
"github.com/dsonck92/tta"
)
var (

View file

@ -1,7 +1,7 @@
package tta
import (
"github.com/zyxar/tta/filter"
"github.com/dsonck92/tta/filter"
)
type Info struct {

View file

@ -4,8 +4,8 @@ import (
"io"
"os"
"github.com/zyxar/tta/filter"
"github.com/zyxar/tta/wave"
"github.com/dsonck92/tta/filter"
"github.com/dsonck92/tta/wave"
)
type Decoder struct {

View file

@ -5,8 +5,8 @@ import (
"io"
"os"
"github.com/zyxar/tta/filter"
"github.com/zyxar/tta/wave"
"github.com/dsonck92/tta/filter"
"github.com/dsonck92/tta/wave"
)
type Encoder struct {

7
go.mod Normal file
View file

@ -0,0 +1,7 @@
module github.com/dsonck92/tta
go 1.15
require (
github.com/klauspost/cpuid v1.3.1
)

4
go.sum Normal file
View file

@ -0,0 +1,4 @@
github.com/klauspost/cpuid v1.3.1 h1:5JNjFYYQrZeKRJ0734q51WCEEn2huer72Dc7K+R/b6s=
github.com/klauspost/cpuid v1.3.1/go.mod h1:bYW4mA6ZgKPob1/Dlai2LviZJO7KGI3uoWLd42rAQw4=
github.com/zyxar/tta v0.0.0-20170824074705-130934ac5d02 h1:M0buUB4gO8ppExMWudrDHqtE+8kbwBmrDxvl6bIQiAI=
github.com/zyxar/tta v0.0.0-20170824074705-130934ac5d02/go.mod h1:mhikW0J+ZFZwAVYczwbGIzO1JH57s+oPGsghcf2Aanw=