mirror of
https://github.com/koel/koel
synced 2024-12-19 17:13:09 +00:00
5 lines
154 B
TypeScript
5 lines
154 B
TypeScript
import { http } from '@/services'
|
|
|
|
export const plusService = {
|
|
activateLicense: async (key: string) => await http.post('licenses/activate', { key })
|
|
}
|