refactor: some clean-up

This commit is contained in:
Deluan 2020-01-31 16:03:30 -05:00 committed by Deluan Quintão
parent a260e65307
commit d9f61a278c
5 changed files with 174 additions and 183 deletions

View file

@ -73,10 +73,6 @@ func (db *NewSQLStore) Annotation(ctx context.Context) model.AnnotationRepositor
return NewAnnotationRepository(ctx, db.getOrmer())
}
func getTypeName(model interface{}) string {
return reflect.TypeOf(model).Name()
}
func (db *NewSQLStore) Resource(ctx context.Context, m interface{}) model.ResourceRepository {
switch m.(type) {
case model.User:
@ -88,7 +84,7 @@ func (db *NewSQLStore) Resource(ctx context.Context, m interface{}) model.Resour
case model.MediaFile:
return db.MediaFile(ctx).(model.ResourceRepository)
}
log.Error("Resource no implemented", "model", getTypeName(m))
log.Error("Resource no implemented", "model", reflect.TypeOf(m).Name())
return nil
}