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

Commit

Permalink
Adjusting imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Xumeiquer committed Mar 26, 2017
1 parent e03f8d7 commit 93d0324
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main.funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"regexp"
"strings"

"dev.jau.me/YaGo2/yago"
"github.com/Yara-Rules/yago/yago"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion main.structs.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"dev.jau.me/YaGo2/yago"
"github.com/Yara-Rules/yago/yago"
)

type jsonCloak struct {
Expand Down
2 changes: 1 addition & 1 deletion yago/grammar.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strconv"

"dev.jau.me/YaGo2/lexic"
"github.com/Yara-Rules/yago/lexic"

"github.com/Sirupsen/logrus"
)
Expand Down
2 changes: 1 addition & 1 deletion yago/grammar.structs.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package yago

import (
"dev.jau.me/YaGo2/lexic"
"github.com/Sirupsen/logrus"
"github.com/Yara-Rules/yago/lexic"
)

// Types of string variables
Expand Down
2 changes: 1 addition & 1 deletion yago/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package yago
import (
"reflect"

"dev.jau.me/YaGo2/lexic"
"github.com/Yara-Rules/yago/lexic"
)

func (p *Parser) addImport(item lexic.Item) bool {
Expand Down

0 comments on commit 93d0324

Please sign in to comment.