interface ISendResponse<T> {
    code: number,
    message: string,
    data: T,

}
export {ISendResponse}