Update import paths to reflect migration to schultesdev domain in all relevant files
This commit is contained in:
6
doc.go
6
doc.go
@@ -7,7 +7,7 @@ pagination support, and comprehensive error handling.
|
|||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
go get github.com/gregor/prefect-go
|
go get git.schultes.dev/schultesdev/prefect-go
|
||||||
|
|
||||||
# Quick Start
|
# Quick Start
|
||||||
|
|
||||||
@@ -19,8 +19,8 @@ Create a client and interact with the Prefect API:
|
|||||||
"context"
|
"context"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/gregor/prefect-go/pkg/client"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/client"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gregor/prefect-go/pkg/client"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/client"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/gregor/prefect-go/pkg/client"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/client"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -7,8 +7,8 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gregor/prefect-go/pkg/client"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/client"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/gregor/prefect-go/pkg/client"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/client"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/gregor/prefect-go/pkg/errors"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/errors"
|
||||||
"github.com/gregor/prefect-go/pkg/retry"
|
"git.schultes.dev/schultesdev/prefect-go/pkg/retry"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
|
"git.schultes.dev/schultesdev/prefect-go/pkg/pagination"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
|
||||||
"github.com/gregor/prefect-go/pkg/pagination"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// FlowRunsService handles operations related to flow runs.
|
// FlowRunsService handles operations related to flow runs.
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
|
"git.schultes.dev/schultesdev/prefect-go/pkg/pagination"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
|
||||||
"github.com/gregor/prefect-go/pkg/pagination"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// FlowsService handles operations related to flows.
|
// FlowsService handles operations related to flows.
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"git.schultes.dev/schultesdev/prefect-go/pkg/models"
|
||||||
|
"git.schultes.dev/schultesdev/prefect-go/pkg/pagination"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/gregor/prefect-go/pkg/models"
|
|
||||||
"github.com/gregor/prefect-go/pkg/pagination"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
// DeploymentsService handles operations related to deployments.
|
// DeploymentsService handles operations related to deployments.
|
||||||
|
|||||||
Reference in New Issue
Block a user