Use the image server

This commit is contained in:
2019-05-05 14:35:08 +09:00
parent dc322dd365
commit 84aa612345
4 changed files with 29 additions and 22 deletions

View File

@ -0,0 +1,8 @@
package upload
// We need these to decode uploaded images.
import (
_ "image/gif"
_ "image/jpeg"
_ "image/png"
)