class BaseResp { constructor(status, msg) { this.status = status; this.msg = msg } } export default BaseResp