Move go module to sr.ht

This commit is contained in:
j.r 2021-04-28 00:07:34 +02:00
parent 9de3ce08d3
commit d21f983c8b
No known key found for this signature in database
GPG Key ID: E74A18B933F9145E
4 changed files with 6 additions and 5 deletions

View File

@ -5,7 +5,7 @@ import (
"os"
"regexp"
jitsilg "git.jugendhacker.de/j.r/jitsilg/internal"
jitsilg "git.sr.ht/~j-r/jitsilg/internal"
)
func main() {

6
go.mod
View File

@ -1,8 +1,8 @@
module git.jugendhacker.de/j.r/jitsilg
module git.sr.ht/~j-r/jitsilg
go 1.16
require (
github.com/dop251/goja v0.0.0-20210406175830-1b11a6af686d // indirect
github.com/mitchellh/mapstructure v1.4.1 // indirect
github.com/dop251/goja v0.0.0-20210406175830-1b11a6af686d
github.com/mitchellh/mapstructure v1.4.1
)

1
go.sum
View File

@ -17,4 +17,5 @@ golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=

View File

@ -13,7 +13,7 @@ import (
"sync"
"time"
"git.jugendhacker.de/j.r/jitsilg/internal/models"
"git.sr.ht/~j-r/jitsilg/internal/models"
"github.com/dop251/goja"
"github.com/mitchellh/mapstructure"
)