Un-export model mappers

This commit is contained in:
Deluan 2020-01-17 21:03:54 -05:00
parent c0beaa6377
commit cef65b6ab0
8 changed files with 60 additions and 60 deletions

View file

@ -5,7 +5,7 @@ import (
"github.com/cloudsonic/sonic-server/model"
)
type Property struct {
type property struct {
ID string `orm:"pk;column(id)"`
Value string
}
@ -21,7 +21,7 @@ func NewPropertyRepository() model.PropertyRepository {
}
func (r *propertyRepository) Put(id string, value string) error {
p := &Property{ID: id, Value: value}
p := &property{ID: id, Value: value}
num, err := Db().Update(p)
if err != nil {
return nil
@ -33,7 +33,7 @@ func (r *propertyRepository) Put(id string, value string) error {
}
func (r *propertyRepository) Get(id string) (string, error) {
p := &Property{ID: id}
p := &property{ID: id}
err := Db().Read(p)
if err == orm.ErrNoRows {
return "", model.ErrNotFound