description.ts 264 B

123456789
  1. export function createFileDescription(license = 'AGPL 3.0') {
  2. return [
  3. `License: ${license}`,
  4. 'Homepage: https://ruleset.skk.moe',
  5. 'GitHub: https://github.com/SukkaW/Surge'
  6. ];
  7. }
  8. export const SHARED_DESCRIPTION = createFileDescription('AGPL 3.0');