Fix lint problems

pull/2/head
Vinícius Garcia 2020-09-14 15:55:54 -03:00
parent 120006008d
commit a5ee2458ec
2 changed files with 6 additions and 0 deletions

View File

@ -46,6 +46,7 @@ func (c Client) Find(
return it.Error
}
// GetByID recovers a single entity from the database by the ID field.
func (c Client) GetByID(
ctx context.Context,
item interface{},

View File

@ -2,10 +2,15 @@ package slices
import "reflect"
// ToInterfaceSlicer describes objects that
// can be converted to a list of interfaces
type ToInterfaceSlicer interface {
ToInterfaceSlice() []interface{}
}
// ToInterfaceSlice converts any slice into a slice of empty interfaces.
//
// If the input argument is not a slice it panics.
func ToInterfaceSlice(slice interface{}) (resp []interface{}) {
if iSlicer, ok := slice.(ToInterfaceSlicer); ok {
return iSlicer.ToInterfaceSlice()