Skip to content

Commit

Permalink
chore: replace module path
Browse files Browse the repository at this point in the history
  • Loading branch information
moecasts committed Oct 17, 2023
1 parent 34cc0ef commit 525c73c
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .sage/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module sage

go 1.17

require go.einride.tech/sage v0.216.0
require go.einride.tech/sage v0.243.0
4 changes: 2 additions & 2 deletions .sage/go.sum
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
go.einride.tech/sage v0.216.0 h1:gjzooF3mJaKi2+BxgZ94OnCL60CouTGZXj6gclZwQSQ=
go.einride.tech/sage v0.216.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
go.einride.tech/sage v0.243.0 h1:Hjz/DyHte7F1+2tp/XUtHLVFHbKM8jBiqFHa+J+dbh8=
go.einride.tech/sage v0.243.0/go.mod h1:EzV5uciFX7/2ho8EKB5K9JghOfXIxlzs694b+Tkl5GQ=
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ For examples of correctly annotated protobuf defintions and the generated code,
### Install the plugin

```bash
go get go.einride.tech/protoc-gen-typescript-http
go get github.com/moecasts/protoc-gen-typescript-http
```

Or download a prebuilt binary from [releases](./releases).
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go.einride.tech/protoc-gen-typescript-http
module github.com/moecasts/protoc-gen-typescript-http

go 1.17

Expand All @@ -13,3 +13,5 @@ require (
github.com/golang/protobuf v1.5.0 // indirect
github.com/google/go-cmp v0.5.5 // indirect
)

retract [v0.0.1, v0.1.0] // inavailable version
2 changes: 1 addition & 1 deletion internal/plugin/commentgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package plugin
import (
"strings"

"go.einride.tech/protoc-gen-typescript-http/internal/codegen"
"github.com/moecasts/protoc-gen-typescript-http/internal/codegen"
"google.golang.org/genproto/googleapis/api/annotations"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/reflect/protoreflect"
Expand Down
2 changes: 1 addition & 1 deletion internal/plugin/enumgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package plugin
import (
"strconv"

"go.einride.tech/protoc-gen-typescript-http/internal/codegen"
"github.com/moecasts/protoc-gen-typescript-http/internal/codegen"
"google.golang.org/protobuf/reflect/protoreflect"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/plugin/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path"
"strings"

"go.einride.tech/protoc-gen-typescript-http/internal/codegen"
"github.com/moecasts/protoc-gen-typescript-http/internal/codegen"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/reflect/protodesc"
"google.golang.org/protobuf/reflect/protoreflect"
Expand Down
2 changes: 1 addition & 1 deletion internal/plugin/jsonleafwalk.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package plugin

import (
"go.einride.tech/protoc-gen-typescript-http/internal/httprule"
"github.com/moecasts/protoc-gen-typescript-http/internal/httprule"
"google.golang.org/protobuf/reflect/protoreflect"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/plugin/messagegen.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package plugin
import (
"strings"

"go.einride.tech/protoc-gen-typescript-http/internal/codegen"
"github.com/moecasts/protoc-gen-typescript-http/internal/codegen"
"google.golang.org/protobuf/reflect/protoreflect"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/plugin/packagegen.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package plugin
import (
"strings"

"go.einride.tech/protoc-gen-typescript-http/internal/codegen"
"go.einride.tech/protoc-gen-typescript-http/internal/protowalk"
"github.com/moecasts/protoc-gen-typescript-http/internal/codegen"
"github.com/moecasts/protoc-gen-typescript-http/internal/protowalk"
"google.golang.org/protobuf/reflect/protoreflect"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/plugin/servicegen.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strconv"
"strings"

"go.einride.tech/protoc-gen-typescript-http/internal/codegen"
"go.einride.tech/protoc-gen-typescript-http/internal/httprule"
"github.com/moecasts/protoc-gen-typescript-http/internal/codegen"
"github.com/moecasts/protoc-gen-typescript-http/internal/httprule"
"google.golang.org/protobuf/reflect/protoreflect"
)

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"strconv"
"strings"

"go.einride.tech/protoc-gen-typescript-http/internal/plugin"
"github.com/moecasts/protoc-gen-typescript-http/internal/plugin"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/pluginpb"
)
Expand Down

0 comments on commit 525c73c

Please sign in to comment.