From 70b3ff63d3c01a5445913c5edcf493855362cc8a Mon Sep 17 00:00:00 2001 From: Lucas Merquior Date: Thu, 22 Feb 2024 19:12:57 -0300 Subject: [PATCH] Update module --- .deepsource.toml | 2 +- README.md | 14 +++++++------- go.mod | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.deepsource.toml b/.deepsource.toml index 030745f..60281d7 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -4,4 +4,4 @@ version = 1 name = "go" [analyzers.meta] - import_root = "github.com/lucmq/google-cloud-id" \ No newline at end of file + import_root = "github.com/lucmq/gcp-project-id" \ No newline at end of file diff --git a/README.md b/README.md index f958f44..e6f14a2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# google-cloud-id -[![Go Reference](https://pkg.go.dev/badge/github.com/lucmq/google-cloud-id.svg)](https://pkg.go.dev/github.com/lucmq/google-cloud-id) -[![Go Report Card](https://goreportcard.com/badge/github.com/lucmq/google-cloud-id)](https://goreportcard.com/report/github.com/lucmq/google-cloud-id) -[![Go Coverage](https://github.com/lucmq/google-cloud-id/wiki/coverage.svg)](https://raw.githack.com/wiki/lucmq/google-cloud-id/coverage.html) +# gcp-project-id +[![Go Reference](https://pkg.go.dev/badge/github.com/lucmq/gcp-project-id.svg)](https://pkg.go.dev/github.com/lucmq/gcp-project-id) +[![Go Report Card](https://goreportcard.com/badge/github.com/lucmq/gcp-project-id)](https://goreportcard.com/report/github.com/lucmq/gcp-project-id) +[![Go Coverage](https://github.com/lucmq/gcp-project-id/wiki/coverage.svg)](https://raw.githack.com/wiki/lucmq/gcp-project-id/coverage.html) Access your Google Cloud project ID and related configuration. @@ -12,7 +12,7 @@ ID configured within the `GCLOUD` CLI. To use this package in your Go project, you can install it using `go get`: ```bash -go get github.com/lucmq/google-cloud-id +go get github.com/lucmq/gcp-project-id ``` ## Usage @@ -24,7 +24,7 @@ package main import ( "fmt" - "github.com/lucmq/google-cloud-id/project" + "github.com/lucmq/gcp-project-id/project" ) func main() { @@ -44,7 +44,7 @@ import ( "fmt" "time" - "github.com/lucmq/google-cloud-id/project" + "github.com/lucmq/gcp-project-id/project" ) func main() { diff --git a/go.mod b/go.mod index 7275646..3fd1119 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/lucmq/google-cloud-id +module github.com/lucmq/gcp-project-id go 1.18