mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-04-15 22:40:42 +08:00
9 lines
225 B
JavaScript
9 lines
225 B
JavaScript
// This function is exported for use by the Clash core
|
|
// eslint-disable-next-line unused-imports/no-unused-vars
|
|
function main(config, _name) {
|
|
if (config.mode === 'script') {
|
|
config.mode = 'rule'
|
|
}
|
|
return config
|
|
}
|