Closed s-aska closed 2 months ago
As-Is:
func (repo *taskRepository) GetByInner.Code(ctx context.Context, inner.Code string) (*Task, error) { return repo.getByXXX(ctx, "inner.code", inner.Code) }
To-Be:
func (repo *taskRepository) GetByInnerCode(ctx context.Context, innerCode string) (*Task, error) { return repo.getByXXX(ctx, "inner.code", innerCode) }
As-Is:
To-Be: