(ctx *gin.Context)
| 210 | } |
| 211 | |
| 212 | func (i *imlSettingController) Get(ctx *gin.Context) (*system_dto.Setting, error) { |
| 213 | return i.settingModule.Get(ctx), nil |
| 214 | } |
| 215 | |
| 216 | func (i *imlSettingController) Set(ctx *gin.Context, input *system_dto.InputSetting) error { |
| 217 | return i.settingModule.Set(ctx, input) |