gobuch/best-practices/project-structure/layer-sample/models/customer.go

12 lines
130 B
Go
Raw Normal View History

2020-08-21 04:26:40 +00:00
package models
import "layeredsample/storage"
type CustomerModel struct {
db storage.DB
}
func (c *CustomerModel) Save() {
}