photoprism/internal/query/account.go

13 lines
266 B
Go
Raw Normal View History

package query
import (
"github.com/photoprism/photoprism/internal/entity"
)
// AccountByID finds an account by primary key.
func AccountByID(id uint) (result entity.Service, err error) {
err = Db().Where("id = ?", id).First(&result).Error
return result, err
}