answer/internal/service/reason_common/reason.go

12 lines
223 B
Go

package reason_common
import (
"context"
"github.com/answerdev/answer/internal/schema"
)
type ReasonRepo interface {
ListReasons(ctx context.Context, objectType, action string) (resp []schema.ReasonItem, err error)
}