Compare commits

...

2 Commits

Author SHA1 Message Date
Blake Miner 6252db9500 Publish test app and test result 2022-04-18 11:25:51 -04:00
Blake Miner 8eae20297d Publish example usage 2022-04-18 11:25:21 -04:00
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# go-embed-test
Testing how //go:embed works for an imported module
Testing how //go:embed works for an imported module
Results: The test actually worked! Neat!

11
example/main.go Normal file
View File

@ -0,0 +1,11 @@
package main
import (
"fmt"
embedtest "git.icomputeconsulting.com/bminer/go-embed-test"
)
func main() {
fmt.Print(embedtest.Embed())
}