Skip to content

Commit

Permalink
Changed go module name to github path
Browse files Browse the repository at this point in the history
  • Loading branch information
edmondchuc committed Aug 16, 2020
1 parent 6d0e42d commit a8a2de4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module gordf
module github.com/edmondchuc/gordf

go 1.15

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package main

import (
"fmt"
"gordf/parser"
"gordf/rdf"
"github.com/edmondchuc/gordf/parser"
"github.com/edmondchuc/gordf/rdf"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion parser/nt.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package parser

import (
"fmt"
"github.com/edmondchuc/gordf/rdf"
"github.com/iand/ntriples"
"gordf/rdf"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package parser

import (
"fmt"
"gordf/rdf"
"github.com/edmondchuc/gordf/rdf"
)

func ParseFile(graph *rdf.Graph, file, format string) {
Expand Down
2 changes: 1 addition & 1 deletion rdf/graph.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package rdf

import (
"gordf/set"
"github.com/edmondchuc/gordf/set"
)

// A Graph struct with three indexes of the different possible triple permutations for fast query access.
Expand Down

0 comments on commit a8a2de4

Please sign in to comment.