mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
Fix padding on readme
This commit is contained in:
parent
92785d109f
commit
9ef6ac30cb
20
README.md
20
README.md
|
@ -252,30 +252,30 @@ func save(ctx *iris.Context) {
|
|||
// Get avatar
|
||||
avatar, err := ctx.FormFile("avatar")
|
||||
if err != nil {
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
// Source
|
||||
src, err := avatar.Open()
|
||||
if err != nil {
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
defer src.Close()
|
||||
|
||||
// Destination
|
||||
dst, err := os.Create(avatar.Filename)
|
||||
if err != nil {
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
defer dst.Close()
|
||||
|
||||
// Copy
|
||||
if _, err = io.Copy(dst, src); err != nil {
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
ctx.HTML(iris.StatusOK, "<b>Thanks!</b>")
|
||||
|
@ -297,8 +297,8 @@ type User struct {
|
|||
iris.Post("/users", func(ctx *iris.Context) {
|
||||
u := new(User)
|
||||
if err := ctx.ReadJSON(u); err != nil {
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
ctx.EmitError(iris.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
ctx.JSON(iris.StatusCreated, u)
|
||||
// or
|
||||
|
|
Loading…
Reference in New Issue
Block a user