export type APIResponseType<T> = {
  data: T;
  message: string;
  success: boolean;
};
