mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 12:25:15 +08:00
21 lines
265 B
JavaScript
21 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;
|