mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-27 01:22:18 +08:00
19 lines
219 B
JavaScript
19 lines
219 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;
|