import ( _ "embed" "fmt" ) //go:embed hello.txt var hello []byte func main() { fmt.Println(string(hello)) }