answer/internal/controller/controller.go

30 lines
650 B
Go
Raw Normal View History

2022-09-27 17:59:05 +08:00
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,
2022-11-02 16:29:10 +08:00
NewDashboardController,
2022-11-14 16:27:10 +08:00
NewUploadController,
2022-11-21 19:28:02 +08:00
NewActivityController,
2022-11-29 15:48:26 +08:00
NewTemplateController,
2022-12-30 10:21:41 +08:00
NewConnectorController,
2023-03-29 17:12:45 +08:00
NewUserCenterController,
2022-09-27 17:59:05 +08:00
)