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
··· 75 75 .use(cors()) 76 76 .use( 77 77 swagger({ 78 + exclude: ["/", "favicon.ico"], 78 79 documentation: { 79 80 info: { 80 81 version: version, ··· 130 131 131 132 return "Hello World from Cachet 😊\n\n---\nSee /swagger for docs\n---"; 132 133 }) 134 + .get("/favicon.ico", Bun.file("./favicon.ico")) 133 135 .get( 134 136 "/health", 135 137 async ({ error }) => {