mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-08-05 14:12:16 +02:00
initial import
This commit is contained in:
14
best-practices/project-structure/packagename/cmd/main.go
Normal file
14
best-practices/project-structure/packagename/cmd/main.go
Normal file
@ -0,0 +1,14 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
||||
"golang.source-fellows.com/samples/packagename/util"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
util.ParseValue("Hello World")
|
||||
json.Marshal("Hello World")
|
||||
|
||||
}
|
Reference in New Issue
Block a user