<?php
defined( 'ABSPATH' ) || exit;
/**
* Registers all block assets so that they can be enqueued through Gutenberg in
* the corresponding context.
*
* Passes translations to JavaScript.
*/
function gutenify_countup_register_block() {
// Register the block by passing the location of block.json to register_block_type.
register_block_type( __DIR__ );
}
add_action( 'init', 'gutenify_countup_register_block' );