import type { SinglePiletApp } from '../types';

/**
 * Represents an empty pilet app.
 */
export const emptyApp: SinglePiletApp = {
  setup() {},
};
