Experimental Surfboard support

This commit is contained in:
SukkaW
2025-05-03 22:42:45 +08:00
parent 647ef48491
commit c3e4a1a445
4 changed files with 29 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import type { Span } from '../../trace';
import { ClashClassicRuleSet } from '../writing-strategy/clash';
import { LegacyClashPremiumClassicRuleSet } from '../writing-strategy/legacy-clash-premium';
import { SingboxSource } from '../writing-strategy/singbox';
import { SurfboardRuleSet } from '../writing-strategy/surfboard';
import { SurgeRuleSet } from '../writing-strategy/surge';
import { FileOutput } from './base';
@@ -13,6 +14,7 @@ export class RulesetOutput extends FileOutput {
new SurgeRuleSet(type),
new ClashClassicRuleSet(type),
new LegacyClashPremiumClassicRuleSet(type),
new SurfboardRuleSet(type),
new SingboxSource(type)
];
}