Update repository links to reflect migration to schultesdev domain in CHANGELOG, CONTRIBUTING, and README files.
This commit is contained in:
@@ -48,5 +48,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
Initial stable release.
|
Initial stable release.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/gregor/prefect-go/compare/v1.0.0...HEAD
|
[Unreleased]: https://git.schultes.dev/schultesdev/prefect-go/compare/v1.0.0...HEAD
|
||||||
[1.0.0]: https://github.com/gregor/prefect-go/releases/tag/v1.0.0
|
[1.0.0]: https://git.schultes.dev/schultesdev/prefect-go/releases/tag/v1.0.0
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ Thank you for your interest in contributing to prefect-go!
|
|||||||
### Clone the Repository
|
### Clone the Repository
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/gregor/prefect-go.git
|
git clone https://git.schultes.dev/schultesdev/prefect-go.git
|
||||||
cd prefect-go
|
cd prefect-go
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
14
README.md
14
README.md
@@ -1,7 +1,7 @@
|
|||||||
# Prefect Go API Client
|
# Prefect Go API Client
|
||||||
|
|
||||||
[](https://pkg.go.dev/github.com/gregor/prefect-go)
|
[](https://pkg.go.dev/git.schultes.dev/schultesdev/prefect-go)
|
||||||
[](https://goreportcard.com/report/github.com/gregor/prefect-go)
|
[](https://goreportcard.com/report/git.schultes.dev/schultesdev/prefect-go)
|
||||||
|
|
||||||
Ein vollständiger Go-Client für die Prefect v3 Server REST API mit Unterstützung für alle Endpoints, automatischen Retries und Pagination.
|
Ein vollständiger Go-Client für die Prefect v3 Server REST API mit Unterstützung für alle Endpoints, automatischen Retries und Pagination.
|
||||||
|
|
||||||
@@ -18,7 +18,7 @@ Ein vollständiger Go-Client für die Prefect v3 Server REST API mit Unterstütz
|
|||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
go get github.com/gregor/prefect-go
|
go get git.schultes.dev/schultesdev/prefect-go
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
@@ -31,8 +31,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() {
|
||||||
@@ -175,7 +175,7 @@ client := client.NewClient(
|
|||||||
Der Client retried automatisch bei transienten Fehlern (5xx, 429):
|
Der Client retried automatisch bei transienten Fehlern (5xx, 429):
|
||||||
|
|
||||||
```go
|
```go
|
||||||
import "github.com/gregor/prefect-go/pkg/retry"
|
import "git.schultes.dev/schultesdev/prefect-go/pkg/retry"
|
||||||
|
|
||||||
retryConfig := retry.Config{
|
retryConfig := retry.Config{
|
||||||
MaxAttempts: 5,
|
MaxAttempts: 5,
|
||||||
@@ -242,7 +242,7 @@ Weitere Beispiele finden Sie im [examples/](examples/) Verzeichnis:
|
|||||||
|
|
||||||
## Dokumentation
|
## Dokumentation
|
||||||
|
|
||||||
Vollständige API-Dokumentation: https://pkg.go.dev/github.com/gregor/prefect-go
|
Vollständige API-Dokumentation: https://pkg.go.dev/git.schultes.dev/schultesdev/prefect-go
|
||||||
|
|
||||||
## Lizenz
|
## Lizenz
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user