Skip to content

Commit bb41405

Browse files
functionaryhiranya911
authored andcommitted
Add Go import comments. (#132)
1 parent 0beafb8 commit bb41405

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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
17+
package auth // import "firebase.google.com/go/auth"
1818

1919
import "golang.org/x/net/context"
2020

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
15+
package db // import "firebase.google.com/go/db"
1616

1717
import (
1818
"encoding/json"

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
18+
package firebase // import "firebase.google.com/go"
1919

2020
import (
2121
"encoding/json"

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
16+
package iid // import "firebase.google.com/go/iid"
1717

1818
import (
1919
"errors"

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
16+
package internal // import "firebase.google.com/go/internal"
1717

1818
import (
1919
"fmt"

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
17+
package messaging // import "firebase.google.com/go/messaging"
1818

1919
import (
2020
"encoding/json"

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
16+
package storage // import "firebase.google.com/go/storage"
1717

1818
import (
1919
"errors"

0 commit comments

Comments
 (0)