mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 17:20:35 +08:00
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
export function createFileDescription(license = 'AGPL 3.0') {
|
|
return [
|
|
`License: ${license}`,
|
|
'Homepage: https://ruleset.skk.moe',
|
|
'GitHub: https://github.com/SukkaW/Surge'
|
|
];
|
|
}
|
|
|
|
export const SHARED_DESCRIPTION = createFileDescription('AGPL 3.0');
|