export interface ErrorResponse {
    message: string;
}
export type HelloResponse = {
    hello: string;
};
export interface User {
    userId: string;
    name: string;
}
