diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d14ea4a..29bc55b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - id: go-imports args: - -local - - git.unbound.se/unboundsoftware/storage + - gitea.unbound.se/unboundsoftware/storage - repo: https://github.com/lietu/go-pre-commit rev: v1.0.0 hooks: diff --git a/CLAUDE.md b/CLAUDE.md index ae2df05..898c33d 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -11,7 +11,7 @@ Provides standardized S3 object storage utilities with presigned URL generation. ## Usage ```go -import "git.unbound.se/unboundsoftware/storage" +import "gitea.unbound.se/unboundsoftware/storage" // Option 1: Managed uploads (multipart, 5MB part size) - loads AWS config automatically s3Storage, err := storage.New("my-bucket") diff --git a/README.md b/README.md index c1b39f1..a45d4eb 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Shared storage utilities for AWS S3. ### Using the Upload Manager (recommended for large files) ```go -import "git.unbound.se/unboundsoftware/storage" +import "gitea.unbound.se/unboundsoftware/storage" // Create storage with automatic AWS config loading s3Storage, err := storage.New("my-bucket") diff --git a/go.mod b/go.mod index 4d89ae5..37488d1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.unbound.se/unboundsoftware/storage +module gitea.unbound.se/unboundsoftware/storage go 1.23