Some checks failed
Build and Deploy (service.xpcool.com) / build-and-deploy (push) Failing after 14s
9 lines
308 B
Go
9 lines
308 B
Go
// Package recruitment 实现招聘考试聚合模块管理端点,绑定在 admin 受权限保护分组下。
|
|
package recruitment
|
|
|
|
// Controller 实现招聘考试聚合模块的所有端点。
|
|
type Controller struct{}
|
|
|
|
// New 创建招聘模块控制器。
|
|
func New() *Controller { return &Controller{} }
|