gobuch/best-practices/project-structure/layer-sample/cmd/main.go

13 lines
119 B
Go
Raw Permalink Normal View History

2020-08-21 04:26:40 +00:00
package main
import (
"fmt"
"layeredsample/models"
)
func main() {
c := models.CustomerModel{}
fmt.Println(c)
}