How to Hide Slack Notifications Admin Menus

function plt_hide_dorzki_notifications_to_slack_menus() {
	//Hide "Slack Notifications".
	remove_menu_page('slack-notifications');
	//Hide "Slack Notifications → General".
	remove_submenu_page('slack-notifications', 'slack-notifications-general');
	//Hide "Slack Notifications → Notifications".
	remove_submenu_page('slack-notifications', 'slack-notifications-notifications');
	//Hide "Slack Notifications → Support".
	remove_submenu_page('slack-notifications', 'slack-notifications-support');
}

add_action('admin_menu', 'plt_hide_dorzki_notifications_to_slack_menus', 12);

Where do I put this code?