I have a directory structure as follows:
.
├── client
│ └── index.html
├── cmd
│ └── projectd
│ ├── projectd
│ └── main.go
├── models.go
└── server.go
cmd/gideond.go
produces the actual binary.
I want to run go-bindata client/
so that I can embed the files in the client directory.
Questions:
server.go
. If I put it in server.go
I have to run go generate
in the root directory and not in cmd/projectd
go-bindata
?