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

6 lines
155 B
TypeScript
Raw Normal View History

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