aboutsummaryrefslogtreecommitdiff
path: root/server/src/services/service.ts
blob: fe23fdace97655afdee43c07a9002cd50cf49ccb (plain) (blame)
1
2
3
4
5
6
7
8
9
import type { Core } from '@strapi/strapi';

const service = ({ strapi }: { strapi: Core.Strapi }) => ({
  getWelcomeMessage() {
    return 'Welcome to Strapi 🚀';
  },
});

export default service;