gobuch/best-practices/project-structure/layer-sample/cmd/main.go
2020-08-21 06:26:40 +02:00

13 lines
119 B
Go

package main
import (
"fmt"
"layeredsample/models"
)
func main() {
c := models.CustomerModel{}
fmt.Println(c)
}