goc/tests/samples/gomod_replace_library/bar.go

9 lines
84 B
Go
Raw Normal View History

2020-08-12 03:43:50 +00:00
package foo
import "fmt"
2020-08-13 07:01:39 +00:00
//Bar fake method
2020-08-12 03:43:50 +00:00
func Bar() {
fmt.Println("foo bar")
}