a cache for slack profile pictures and emojis

feat: add favicon and hide /

Changed files
+2
src
favicon.ico

This is a binary file and will not be displayed.

+2
src/index.ts
···
.use(cors())
.use(
swagger({
documentation: {
info: {
version: version,
···
return "Hello World from Cachet 😊\n\n---\nSee /swagger for docs\n---";
})
.get(
"/health",
async ({ error }) => {
···
.use(cors())
.use(
swagger({
+
exclude: ["/", "favicon.ico"],
documentation: {
info: {
version: version,
···
return "Hello World from Cachet 😊\n\n---\nSee /swagger for docs\n---";
})
+
.get("/favicon.ico", Bun.file("./favicon.ico"))
.get(
"/health",
async ({ error }) => {