Remove generated file statik.go and add empty init.go to avoid import error

This commit is contained in:
HaoyangLiu 2018-09-14 14:11:53 +08:00
parent 5a8d823324
commit 538fd6ec5f
3 changed files with 4 additions and 13 deletions

2
.gitignore vendored
View File

@ -17,7 +17,7 @@ docs/_build
examples/basecoin/app/data
baseapp/data/*
client/lcd/keys/*
client/lcd/statik/*
client/lcd/statik/statik.go
mytestnet
# Testing

View File

@ -0,0 +1,3 @@
package statik
//This just for fixing the error in importing empty github.com/cosmos/cosmos-sdk/client/lcd/statik

View File

@ -1,12 +0,0 @@
// Code generated by statik. DO NOT EDIT.
package statik
import (
"github.com/rakyll/statik/fs"
)
func init() {
data := ""
fs.Register(data)
}