Skip to content

Commit 9c77407

Browse files
committed
minor
1 parent 0e97a24 commit 9c77407

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ blank_issues_enabled: false
22
contact_links:
33
- name: MongoDB Atlas App Services Support
44
url: https://support.mongodb.com/
5-
about: Support is provided under MongoDB support plans. Please submit support questions within the Realm UI.
5+
about: Support is provided under MongoDB support plans. Please submit support questions within the App Services UI.
66
- name: MongoDB MongoDB Atlas App Services
77
url: https://www.mongodb.com/docs/atlas/app-services/
88
about: Learn more about MongoDB MongoDB Atlas App Services

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A Go HTTP client for the [MongoDB Atlas App Services Admin API](https://www.mong
66
## Usage
77

88
```go
9-
import "go.mongodb.org/atlas-appservices/appservices"
9+
import "github.com/mongodb-labs/go-client-mongodb-atlas-app-services/appservices"
1010
```
1111

1212
Construct a new App Services client, then use the various services on the client to

appservices/appservices.go

Lines changed: 3 additions & 3 deletions
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 appservices // import "go.mongodb.org/realm/realm"
15+
package appservices // import "github.com/mongodb-labs/go-client-mongodb-atlas-app-services/appservices"
1616

1717
import (
1818
"bytes"
@@ -27,9 +27,9 @@ import (
2727
"reflect"
2828
"strings"
2929

30-
"github.com/google/go-querystring/query"
31-
3230
"go.mongodb.org/atlas/mongodbatlas"
31+
32+
"github.com/google/go-querystring/query"
3333
)
3434

3535
const (

auth/auth.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 auth // import "go.mongodb.org/realm/auth"
15+
package auth // import "github.com/mongodb-labs/go-client-mongodb-atlas-app-services/auth"
1616

1717
import (
1818
"bytes"

0 commit comments

Comments
 (0)