gobuch/best-practices/project-structure/layer-sample/storage/db.go

10 lines
127 B
Go
Raw Normal View History

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