| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : package skill 2 : 3 : import "context" 4 : 5 : // ReorderUserSkill は Skillの並び順変更を実行します 6 : func (uc *Interactor) ReorderUserSkill( 7 : ctx context.Context, 8 : in OrderUserSkillInput, 9 0 : ) error { 10 0 : return uc.tx.Do(ctx, func(txCtx context.Context) error { 11 0 : return uc.usRepo.UpdateOrder(txCtx, in.UserID, in.IDs) 12 0 : }) 13 : } |
| Generated by: LCOV version 2.3.1-1 |