2021-07-22 15:10:36 -04:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import {createPlaygroundResponse} from '../functionUtils/playgroundUtils';
|
2022-05-14 11:39:50 -04:00
|
|
|
import type {Handler} from '@netlify/functions';
|
2021-07-22 15:10:36 -04:00
|
|
|
|
2022-05-24 03:40:26 -04:00
|
|
|
export const handler: Handler = () =>
|
|
|
|
|
Promise.resolve(createPlaygroundResponse('stackblitz'));
|