mirror of
https://github.com/koel/koel
synced 2025-03-08 17:17:13 +00:00
7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
import { http } from '@/services'
|
|
|
|
export const plusService = {
|
|
activateLicense: async (key: string) => {
|
|
return await http.post('licenses/activate', { key })
|
|
}
|
|
}
|