Skip to content
This repository has been archived by the owner on Aug 14, 2019. It is now read-only.

Fixed package names to allow importing module from external sources #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# gremgo-neptune
# gremgo

[![GoDoc](http://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/schwartzmx/gremgo-neptune) [![Build Status](https://travis-ci.org/schwartzmx/gremgo-neptune.svg?branch=master)](https://travis-ci.org/schwartzmx/gremgo-neptune) [![Go Report Card](https://goreportcard.com/badge/github.com/schwartzmx/gremgo-neptune)](https://goreportcard.com/report/github.com/schwartzmx/gremgo-neptune)
[![GoDoc](http://img.shields.io/badge/godoc-reference-blue.svg)](http://godoc.org/github.com/schwartzmx/gremgo) [![Build Status](https://travis-ci.org/schwartzmx/gremgo.svg?branch=master)](https://travis-ci.org/schwartzmx/gremgo) [![Go Report Card](https://goreportcard.com/badge/github.com/schwartzmx/gremgo)](https://goreportcard.com/report/github.com/schwartzmx/gremgo)

gremgo-neptune is a fork of [qasaur/gremgo](https://github.com/qasaur/gremgo) with alterations to make it compatible with [AWS Neptune](https://aws.amazon.com/neptune/) which is a "Fast, reliable graph database built for the cloud".
gremgo is a fork of [qasaur/gremgo](https://github.com/qasaur/gremgo) with alterations to make it compatible with [AWS Neptune](https://aws.amazon.com/neptune/) which is a "Fast, reliable graph database built for the cloud".

gremgo is a fast, efficient, and easy-to-use client for the TinkerPop graph database stack. It is a Gremlin language driver which uses WebSockets to interface with Gremlin Server and has a strong emphasis on concurrency and scalability. Please keep in mind that gremgo is still under heavy development and although effort is being made to fully cover gremgo with reliable tests, bugs may be present in several areas.

Expand All @@ -11,14 +11,14 @@ gremgo is a fast, efficient, and easy-to-use client for the TinkerPop graph data
Installation
==========
```
go get github.com/schwartzmx/gremgo-neptune
go get github.com/schwartzmx/gremgo
dep ensure
```

Documentation
==========

* [GoDoc](https://godoc.org/github.com/schwartzmx/gremgo-neptune)
* [GoDoc](https://godoc.org/github.com/schwartzmx/gremgo)

Example
==========
Expand All @@ -29,7 +29,7 @@ import (
"fmt"
"log"

"github.com/schwartzmx/gremgo-neptune"
"github.com/schwartzmx/gremgo"
)

func main() {
Expand Down Expand Up @@ -74,7 +74,7 @@ import (
"fmt"
"log"

"github.com/schwartzmx/gremgo-neptune"
"github.com/schwartzmx/gremgo"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module gremgo
module github.com/schwartzmx/gremgo
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@elfido should we just be able to change the module path in go.mod to the full url, as described here, https://github.com/golang/go/wiki/Modules#gomod
module github.com/schwartzmx/gremgo-neptune?

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we try that and I can make another release?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will give a try, thanks. I'll keep you posted


require (
github.com/gofrs/uuid v3.2.0+incompatible
Expand Down