diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-07-14 10:56:50 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-07-15 01:49:34 +0200 |
commit | 5ae8c24b8d580a09f4b95742230e64f135e52635 (patch) | |
tree | 2ce2e4281b20a735ef5d319e4d668883af489a89 /prototypes | |
parent | ef24d7980c50f706286d99ab6d80a98af89970e3 (diff) | |
download | haven-5ae8c24b8d580a09f4b95742230e64f135e52635.tar.gz haven-5ae8c24b8d580a09f4b95742230e64f135e52635.tar.xz haven-5ae8c24b8d580a09f4b95742230e64f135e52635.zip |
xgb-image: gofmt
Diffstat (limited to 'prototypes')
-rw-r--r-- | prototypes/xgb-image.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/prototypes/xgb-image.go b/prototypes/xgb-image.go index 2da37d6..fce0ab1 100644 --- a/prototypes/xgb-image.go +++ b/prototypes/xgb-image.go @@ -2,16 +2,17 @@ package main import ( "encoding/binary" - "github.com/BurntSushi/xgb" - "github.com/BurntSushi/xgb/render" - "github.com/BurntSushi/xgb/shm" - "github.com/BurntSushi/xgb/xproto" "log" "os" "reflect" "time" "unsafe" + "github.com/BurntSushi/xgb" + "github.com/BurntSushi/xgb/render" + "github.com/BurntSushi/xgb/shm" + "github.com/BurntSushi/xgb/xproto" + "image" _ "image/gif" _ "image/jpeg" |