mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
22 lines
265 B
JavaScript
22 lines
265 B
JavaScript
|
|
||
|
class BaseAction {
|
||
|
|
||
|
constructor(config) {
|
||
|
this.config = config;
|
||
|
}
|
||
|
|
||
|
get key() {
|
||
|
return this.config.key;
|
||
|
}
|
||
|
|
||
|
register() {
|
||
|
// To override.
|
||
|
}
|
||
|
|
||
|
run(status) {
|
||
|
// To override.
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default BaseAction;
|