headplane/server/context/app.ts

12 lines
213 B
TypeScript
Raw Normal View History

import { hp_agentRequest } from '~server/ws/data';
2025-02-19 18:09:42 -05:00
export interface AppContext {
hp_agentRequest: typeof hp_agentRequest;
2025-02-19 18:09:42 -05:00
}
2025-03-06 17:37:41 -05:00
export default function appContext(): AppContext {
2025-02-19 18:09:42 -05:00
return {
hp_agentRequest,
2025-02-19 18:09:42 -05:00
};
}