diff --git a/README.md b/README.md index 2778717..0c4eac7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

A Go library to create BloodHound OpenGraphs easily
- Go Reference + Go Reference GitHub release (latest by date) YouTube Channel Subscribers @@ -25,26 +25,26 @@ If you don't know about BloodHound OpenGraph yet, a great introduction can be fo Install with: ```bash -go get github.com/TheManticoreProject/bhopengraph +go get github.com/TheManticoreProject/gopengraph ``` ## Examples -Here is an example of a Go program using the [bhopengraph](https://github.com/TheManticoreProject/bhopengraph) Go library to model the [Minimal Working JSON](https://bloodhound.specterops.io/opengraph/schema#minimal-working-json) from the OpenGraph Schema documentation: +Here is an example of a Go program using the [gopengraph](https://github.com/TheManticoreProject/gopengraph) Go library to model the [Minimal Working JSON](https://bloodhound.specterops.io/opengraph/schema#minimal-working-json) from the OpenGraph Schema documentation: ```go package main import ( - "github.com/TheManticoreProject/bhopengraph" - "github.com/TheManticoreProject/bhopengraph/edge" - "github.com/TheManticoreProject/bhopengraph/node" - "github.com/TheManticoreProject/bhopengraph/properties" + "github.com/TheManticoreProject/gopengraph" + "github.com/TheManticoreProject/gopengraph/edge" + "github.com/TheManticoreProject/gopengraph/node" + "github.com/TheManticoreProject/gopengraph/properties" ) func main() { // Create an OpenGraph instance - graph := bhopengraph.NewOpenGraph("Base") + graph := gopengraph.NewOpenGraph("Base") // Create nodes bobProps := properties.NewProperties()