router: update system routes for linux

This commit is contained in:
ginuerzh
2023-11-30 19:39:37 +08:00
parent 8ef341dc88
commit b1390dda1c
8 changed files with 55 additions and 12 deletions

11
router/router_other.go Normal file
View File

@ -0,0 +1,11 @@
//go:build !linux
package router
import (
"github.com/go-gost/core/router"
)
func (*localRouter) setSysRoutes(routes ...*router.Route) error {
return nil
}