Skip to content

Commit 9be4582

Browse files
fixed sdk import path in generated files
1 parent 67ef295 commit 9be4582

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go/runtime-gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type RuntimeInfo struct {
1919
const runtimeFileTemplate = `package _polycode
2020
2121
import (
22-
runtime "github.com/cloudimpl/polycode-runtime-go"
22+
runtime "github.com/cloudimpl/polycode-runtime/go"
2323
)
2424
2525
func init() {

go/service-gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const serviceFileTemplate = `package _polycode
4242
4343
import (
4444
"errors"
45-
"github.com/cloudimpl/polycode-runtime-go/sdk"
45+
"github.com/cloudimpl/polycode-runtime/go/sdk"
4646
"strings"
4747
service "{{.ModuleName}}/services/{{.ServiceName}}"
4848
{{range .Imports}}"{{.}}"

0 commit comments

Comments
 (0)