Skip to content

Commit

Permalink
Use embed for pixel just so it's a proper png file.
Browse files Browse the repository at this point in the history
  • Loading branch information
scr-oath committed Dec 15, 2024
1 parent 06677e3 commit 9817262
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions util/httputil/pixel.go
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
package httputil

import _ "embed"

type Pixel struct {
Content []byte
ContentType string
}

//go:embed pixel.png
var pixelContent []byte
var Pixel1x1PNG = Pixel{
Content: []byte{0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44,
0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, 0x08, 0x06, 0x00, 0x00, 0x00, 0x1F, 0x15, 0xC4,
0x89, 0x00, 0x00, 0x00, 0x04, 0x73, 0x42, 0x49, 0x54, 0x08, 0x08, 0x08, 0x08, 0x7C, 0x08, 0x64, 0x88,
0x00, 0x00, 0x00, 0x0D, 0x49, 0x44, 0x41, 0x54, 0x08, 0x99, 0x63, 0x60, 0x60, 0x60, 0x60, 0x00, 0x00,
0x00, 0x05, 0x00, 0x01, 0x87, 0xA1, 0x4E, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, 0xAE,
0x42, 0x60, 0x82},
Content: pixelContent,
ContentType: "image/png",
}
Binary file added util/httputil/pixel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9817262

Please sign in to comment.