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

6 lines
154 B
TypeScript
Raw Normal View History

import { http } from '@/services'
export const plusService = {
2024-01-14 12:43:53 +00:00
activateLicense: async (key: string) => await http.post('licenses/activate', { key })
}