2
0
Fork 0
mirror of https://github.com/koel/koel synced 2025-01-09 11:18:44 +00:00
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 })
}