diff --git a/doc.go b/doc.go index 1217959..fb08d9d 100644 --- a/doc.go +++ b/doc.go @@ -7,7 +7,7 @@ pagination support, and comprehensive error handling. # Installation - go get github.com/gregor/prefect-go + go get git.schultes.dev/schultesdev/prefect-go # Quick Start @@ -19,8 +19,8 @@ Create a client and interact with the Prefect API: "context" "log" - "github.com/gregor/prefect-go/pkg/client" - "github.com/gregor/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/client" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" ) func main() { diff --git a/examples/basic/main.go b/examples/basic/main.go index e77ea4d..b92ce81 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -7,8 +7,8 @@ import ( "log" "time" - "github.com/gregor/prefect-go/pkg/client" - "github.com/gregor/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/client" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" ) func main() { diff --git a/examples/deployment/main.go b/examples/deployment/main.go index 23ed8cc..2f6780e 100644 --- a/examples/deployment/main.go +++ b/examples/deployment/main.go @@ -6,8 +6,8 @@ import ( "fmt" "log" - "github.com/gregor/prefect-go/pkg/client" - "github.com/gregor/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/client" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" ) func main() { diff --git a/examples/monitoring/main.go b/examples/monitoring/main.go index 3bb440d..01c2142 100644 --- a/examples/monitoring/main.go +++ b/examples/monitoring/main.go @@ -7,8 +7,8 @@ import ( "log" "time" - "github.com/gregor/prefect-go/pkg/client" - "github.com/gregor/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/client" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" ) func main() { diff --git a/examples/pagination/main.go b/examples/pagination/main.go index 3977e0a..a34cd08 100644 --- a/examples/pagination/main.go +++ b/examples/pagination/main.go @@ -6,8 +6,8 @@ import ( "fmt" "log" - "github.com/gregor/prefect-go/pkg/client" - "github.com/gregor/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/client" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" ) func main() { diff --git a/pkg/client/client.go b/pkg/client/client.go index 47b4522..0f2b714 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -12,8 +12,8 @@ import ( "strings" "time" - "github.com/gregor/prefect-go/pkg/errors" - "github.com/gregor/prefect-go/pkg/retry" + "git.schultes.dev/schultesdev/prefect-go/pkg/errors" + "git.schultes.dev/schultesdev/prefect-go/pkg/retry" ) const ( diff --git a/pkg/client/flow_runs.go b/pkg/client/flow_runs.go index 6a54379..06731d7 100644 --- a/pkg/client/flow_runs.go +++ b/pkg/client/flow_runs.go @@ -5,9 +5,9 @@ import ( "fmt" "time" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/pagination" "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. diff --git a/pkg/client/flows.go b/pkg/client/flows.go index a573d11..fa03750 100644 --- a/pkg/client/flows.go +++ b/pkg/client/flows.go @@ -4,9 +4,9 @@ import ( "context" "fmt" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/pagination" "github.com/google/uuid" - "github.com/gregor/prefect-go/pkg/models" - "github.com/gregor/prefect-go/pkg/pagination" ) // FlowsService handles operations related to flows. diff --git a/pkg/client/services.go b/pkg/client/services.go index f9eb75f..a962861 100644 --- a/pkg/client/services.go +++ b/pkg/client/services.go @@ -4,9 +4,9 @@ import ( "context" "fmt" + "git.schultes.dev/schultesdev/prefect-go/pkg/models" + "git.schultes.dev/schultesdev/prefect-go/pkg/pagination" "github.com/google/uuid" - "github.com/gregor/prefect-go/pkg/models" - "github.com/gregor/prefect-go/pkg/pagination" ) // DeploymentsService handles operations related to deployments.