Update repository links to reflect migration to schultesdev domain in CHANGELOG, CONTRIBUTING, and README files.

This commit is contained in:
Gregor Schulte
2026-02-02 08:48:23 +01:00
parent 43b4910a63
commit 510ce50c33
3 changed files with 10 additions and 10 deletions

View File

@@ -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

View File

@@ -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
``` ```

View File

@@ -1,7 +1,7 @@
# Prefect Go API Client # Prefect Go API Client
[![Go Reference](https://pkg.go.dev/badge/github.com/gregor/prefect-go.svg)](https://pkg.go.dev/github.com/gregor/prefect-go) [![Go Reference](https://pkg.go.dev/badge/git.schultes.dev/schultesdev/prefect-go.svg)](https://pkg.go.dev/git.schultes.dev/schultesdev/prefect-go)
[![Go Report Card](https://goreportcard.com/badge/github.com/gregor/prefect-go)](https://goreportcard.com/report/github.com/gregor/prefect-go) [![Go Report Card](https://goreportcard.com/badge/git.schultes.dev/schultesdev/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