diff options
author | Přemysl Janouch <p@janouch.name> | 2018-09-08 19:57:27 +0200 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-21 08:37:59 +0200 |
commit | 7aa2601e66155f841fe39ebaa83323969d7849bc (patch) | |
tree | 38d46724d8073c72008756032432c422b7561969 /nexgb/doc.go | |
parent | 48fb710f357a363cce043a9f546e8a4aff196786 (diff) | |
download | haven-7aa2601e66155f841fe39ebaa83323969d7849bc.tar.gz haven-7aa2601e66155f841fe39ebaa83323969d7849bc.tar.xz haven-7aa2601e66155f841fe39ebaa83323969d7849bc.zip |
nexgb: rewrite import paths
Diffstat (limited to 'nexgb/doc.go')
-rw-r--r-- | nexgb/doc.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nexgb/doc.go b/nexgb/doc.go index a587d4c..90f3cea 100644 --- a/nexgb/doc.go +++ b/nexgb/doc.go @@ -21,8 +21,8 @@ accompanying documentation can be found in examples/create-window. import ( "fmt" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xproto" + xgb "janouch.name/haven/nexgb" + "janouch.name/haven/nexgb/xproto" ) func main() { @@ -72,8 +72,8 @@ can be found in examples/xinerama. import ( "fmt" "log" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/xinerama" + xgb "janouch.name/haven/nexgb" + "janouch.name/haven/nexgb/xinerama" ) func main() { |