gobuch/best-practices/project-structure/packagename/util/log.go

8 lines
80 B
Go
Raw Normal View History

2020-08-21 04:26:40 +00:00
package util
import "fmt"
func ParseValue(text string) {
fmt.Println(text)
}