1
0
mirror of https://github.com/golang/go synced 2024-11-26 08:38:01 -07:00

mime: add mime type for avif image file format

Fixes #44602

Change-Id: I28b6df5e2523fc2ece6fd8251fcabc83c7c38d89
Reviewed-on: https://go-review.googlesource.com/c/go/+/256478
Trust: Ian Lance Taylor <iant@golang.org>
Trust: Michael Knyszek <mknyszek@google.com>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Amit Kumar 2020-09-22 18:52:06 +05:30 committed by Ian Lance Taylor
parent d27bb8ba2e
commit 567a9322ad

View File

@ -72,6 +72,7 @@ var builtinTypesLower = map[string]string{
".svg": "image/svg+xml",
".wasm": "application/wasm",
".webp": "image/webp",
".avif": "image/avif",
".xml": "text/xml; charset=utf-8",
}