mirror of
https://github.com/koel/koel
synced 2025-01-11 20:28:49 +00:00
5 lines
155 B
TypeScript
5 lines
155 B
TypeScript
import { http } from '@/services'
|
|
|
|
export const plusService = {
|
|
activateLicense: async (key: string) => await http.post('licenses/activate', { key }),
|
|
}
|