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