koel/resources/assets/js/services/plusService.ts
2024-10-14 00:37:01 +07:00

5 lines
155 B
TypeScript

import { http } from '@/services'
export const plusService = {
activateLicense: async (key: string) => await http.post('licenses/activate', { key }),
}