Add go:generate gofmt

This commit is contained in:
Hajime Hoshi 2014-12-11 02:03:13 +09:00
parent d5529d4351
commit f388a48d52
2 changed files with 2 additions and 1 deletions

View File

@ -25,6 +25,7 @@ import (
const FileNameText = "text.png" const FileNameText = "text.png"
//go:generate go-bindata -nocompress -pkg=assets -nomemcopy text.png //go:generate go-bindata -nocompress -pkg=assets -nomemcopy text.png
//go:generate gofmt -w .
const ( const (
TextImageWidth = 192 TextImageWidth = 192

View File

@ -69,7 +69,7 @@ func text_png() (*asset, error) {
return nil, err return nil, err
} }
info := bindata_file_info{name: "text.png", size: 4854, mode: os.FileMode(420), modTime: time.Unix(1418230333, 0)} info := bindata_file_info{name: "text.png", size: 4854, mode: os.FileMode(420), modTime: time.Unix(1418230741, 0)}
a := &asset{bytes: bytes, info: info} a := &asset{bytes: bytes, info: info}
return a, nil return a, nil
} }