answer/internal/controller/controller.go

25 lines
529 B
Go

package controller
import "github.com/google/wire"
// ProviderSetController is controller providers.
var ProviderSetController = wire.NewSet(
NewLangController,
NewCommentController,
NewReportController,
NewVoteController,
NewTagController,
NewFollowController,
NewCollectionController,
NewUserController,
NewQuestionController,
NewAnswerController,
NewSearchController,
NewRevisionController,
NewRankController,
NewReasonController,
NewNotificationController,
NewSiteinfoController,
NewDashboardController,
)