Chooses whether to use an inline or attachment Content-Disposition header based on the type of media being downloaded.
12 lines
166 B
Go
12 lines
166 B
Go
package data
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed matrix.png
|
|
var MatrixPng []byte
|
|
|
|
//go:embed large.png
|
|
var LargePng []byte
|
|
|
|
//go:embed matrix-logo.svg
|
|
var MatrixSvg []byte
|