mirror of
https://github.com/djdevin/recflare.git
synced 2026-09-08 22:51:30 -07:00
add playersettings, img, more match endpoints
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import type { HonoApp } from '@repo/hono-helpers'
|
||||
import type { SharedHonoEnv, SharedHonoVariables } from '@repo/hono-helpers/src/types'
|
||||
|
||||
export type Env = SharedHonoEnv & {
|
||||
/** R2 bucket holding the served image objects, keyed by filename. */
|
||||
IMAGES: R2Bucket
|
||||
/**
|
||||
* RSA-2048 private key (PKCS8 DER, base64) used to sign image responses
|
||||
* requested with `?sig=p1`. Optional — when absent, responses are unsigned.
|
||||
*/
|
||||
IMG_SIGNING_KEY?: string
|
||||
}
|
||||
|
||||
/** Variables can be extended */
|
||||
export type Variables = SharedHonoVariables
|
||||
|
||||
export interface App extends HonoApp {
|
||||
Bindings: Env
|
||||
Variables: Variables
|
||||
}
|
||||
Reference in New Issue
Block a user