├── .gitignore ├── example1 ├── main.go └── static │ └── logo.png ├── example2 ├── main.go └── message.txt ├── example3 ├── main.go └── static │ └── logo.png ├── example4 ├── main.go └── static │ └── logo.png ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /example1/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example1/main.go -------------------------------------------------------------------------------- /example1/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example1/static/logo.png -------------------------------------------------------------------------------- /example2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example2/main.go -------------------------------------------------------------------------------- /example2/message.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /example3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example3/main.go -------------------------------------------------------------------------------- /example3/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example3/static/logo.png -------------------------------------------------------------------------------- /example4/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example4/main.go -------------------------------------------------------------------------------- /example4/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/example4/static/logo.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-embed-example/HEAD/go.sum --------------------------------------------------------------------------------