koel/resources/assets/js/services/plusService.ts

7 lines
171 B
TypeScript

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