# extendify/3.0.6/src/AutoLaunch/functions/setup.js

Extendify, version 3.0.6. 11 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.0.6/code/src/AutoLaunch/functions/setup.js
- Raw: https://pluginprobe.com/plugins/extendify/3.0.6/raw/src/AutoLaunch/functions/setup.js
- Modified: 2026-02-26T23:48:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.0.6/code/src/AutoLaunch/functions/setup.js#L10-L20`.

```javascript
import apiFetch from '@wordpress/api-fetch';

export const prefetchAssistData = async () =>
	await apiFetch({ path: 'extendify/v1/auto-launch/prefetch-assist-data' });

export const postLaunchFunctions = () =>
	apiFetch({
		path: '/extendify/v1/launch/post-launch-functions',
		method: 'POST',
	});

```
