0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-27 21:39:16 -05:00
logto/packages/connectors/connector-mock-sms/src/constant.ts
Gao Sun 6b322a537c
refactor: add connector packages
the initial commit to move all connector packages to the main
repo.
2023-04-01 15:53:14 +08:00

23 lines
657 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { ConnectorMetadata } from '@logto/connector-kit';
export const defaultMetadata: ConnectorMetadata = {
id: 'mock-short-message-service',
target: 'mock-sms',
platform: null,
name: {
en: 'Mock SMS Service',
'zh-CN': 'Mock 短信服务',
'tr-TR': 'Mock SMS Servis',
ko: 'Mock SMS Service',
},
logo: './logo.svg',
logoDark: null,
description: {
en: 'The description of Mock SMS Service.',
'zh-CN': 'Mock 短信服务的描述。',
'tr-TR': 'Mock SMS Servis açıklaması.',
ko: 'The description of Mock SMS Service.',
},
readme: './README.md',
configTemplate: './docs/config-template.json',
};