Remove generated file statik.go and add empty init.go to avoid import error
This commit is contained in:
parent
5a8d823324
commit
538fd6ec5f
|
@ -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
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
package statik
|
||||
|
||||
//This just for fixing the error in importing empty github.com/cosmos/cosmos-sdk/client/lcd/statik
|
|
@ -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)
|
||||
}
|
Loading…
Reference in New Issue