Skip to content

Commit 38e9443

Browse files
authored
fix: Removed import path comments (#380)
* fix: Checked and updated import path comments * Removed import paths altogether * Removed other lingering import paths
1 parent 81eddc5 commit 38e9443

File tree

10 files changed

+15
-13
lines changed

10 files changed

+15
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ requests, code review feedback, and also pull requests.
4141

4242
## Supported Go Versions
4343

44-
We support Go v1.11 and higher.
44+
We support Go v1.12 and higher.
4545
[Continuous integration](https://github.com/firebase/firebase-admin-go/actions) system
46-
tests the code on Go v1.11 through v1.13.
46+
tests the code on Go v1.12 through v1.14.
4747

4848
## Documentation
4949

auth/auth_std.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// See the License for the specific language governing permissions and
1515
// limitations under the License.
1616

17-
package auth // import "firebase.google.com/go/auth"
17+
package auth
1818

1919
import (
2020
"context"

auth/hash/hash.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Package hash contains a collection of password hash algorithms that can be used with the
1616
// auth.ImportUsers() API. Refer to https://firebase.google.com/docs/auth/admin/import-users for
1717
// more details about supported hash algorithms.
18-
package hash // import "firebase.google.com/go/auth/hash"
18+
package hash
1919

2020
import (
2121
"encoding/base64"

db/query.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
package db // import "firebase.google.com/go/v4/db"
15+
package db
1616

1717
import (
1818
"context"

errorutils/errorutils.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@
1313
// limitations under the License.
1414

1515
// Package errorutils provides functions for checking and handling error conditions.
16-
package errorutils // import "firebase.google.com/go/v4/errorutils"
16+
package errorutils
1717

18-
import "firebase.google.com/go/v4/internal"
18+
import (
19+
"net/http"
1920

20-
import "net/http"
21+
"firebase.google.com/go/v4/internal"
22+
)
2123

2224
// IsInvalidArgument checks if the given error was due to an invalid client argument.
2325
func IsInvalidArgument(err error) bool {

firebase.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Package firebase is the entry point to the Firebase Admin SDK. It provides functionality for initializing App
1616
// instances, which serve as the central entities that provide access to various other Firebase services exposed
1717
// from the SDK.
18-
package firebase // import "firebase.google.com/go/v4"
18+
package firebase
1919

2020
import (
2121
"context"

iid/iid.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
// Package iid contains functions for deleting instance IDs from Firebase projects.
16-
package iid // import "firebase.google.com/go/v4/iid"
16+
package iid
1717

1818
import (
1919
"context"

internal/internal.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
// Package internal contains functionality that is only accessible from within the Admin SDK.
16-
package internal // import "firebase.google.com/go/v4/internal"
16+
package internal
1717

1818
import (
1919
"time"

messaging/messaging.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
// Package messaging contains functions for sending messages and managing
1616
// device subscriptions with Firebase Cloud Messaging (FCM).
17-
package messaging // import "firebase.google.com/go/v4/messaging"
17+
package messaging
1818

1919
import (
2020
"context"

storage/storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
// Package storage provides functions for accessing Google Cloud Storge buckets.
16-
package storage // import "firebase.google.com/go/storage"
16+
package storage
1717

1818
import (
1919
"context"

0 commit comments

Comments
 (0)