8 lines
270 B
TypeScript
8 lines
270 B
TypeScript
import { invokeIpc } from '@/lib/api-client';
|
|
|
|
export const WORKS_SQUARE_UPGRADE_URL = 'https://square.nianxx.cn/#profile';
|
|
|
|
export async function openWorksSquareSubscriptionUpgrade(): Promise<void> {
|
|
await invokeIpc('shell:openExternal', WORKS_SQUARE_UPGRADE_URL);
|
|
}
|