(c *gin.Context)
| 290 | } |
| 291 | |
| 292 | func StatelessCreateFile(c *gin.Context) { |
| 293 | service := ParametersFromContext[*fs.StatelessCreateFileService](c, node.StatelessCreateFileParamCtx{}) |
| 294 | if err := node.StatelessCreateFile(service, c); err != nil { |
| 295 | c.JSON(200, serializer.Err(c, err)) |
| 296 | c.Abort() |
| 297 | return |
| 298 | } |
| 299 | |
| 300 | c.JSON(200, serializer.Response{}) |
| 301 | } |
nothing calls this directly
no test coverage detected