Go File Links -

//go:embed logo.png var logoBytes []byte

This is the most common "file link" in modern Go—it links external files into your executable at compile time. Basic usage package main import _ "embed" go file links

//go:embed static/* var staticFiles embed.FS //go:embed logo