koel/resources/assets/js/services/plusService.ts
2024-07-06 17:44:43 +02:00

5 lines
154 B
TypeScript

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