examples
examples copied to clipboard
How can i generate assets.go???
How can I do right now? I could not use command go-assets-builder html -o assets.go And the result is always zsh: command not found: go-assets-builder Please help me...
You can try the following example using embed in Go 1.16
https://github.com/gin-gonic/examples/tree/master/assets-in-binary/example02
@vantrung8794 maybe you can install the command go-assets-builder as follows:
go get github.com/jessevdk/go-assets-builder
go install github.com/jessevdk/go-assets-builder@latest