/**
 * Ping method
 */
const ping = async (): Promise<string> => {
  return "pong";
};

export default ping;
