mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
12 lines
224 B
Go
12 lines
224 B
Go
package router
|
|
|
|
import "github.com/p4gefau1t/trojan-go/protocol"
|
|
|
|
type EmptyRouter struct {
|
|
DefaultPolicy Policy
|
|
}
|
|
|
|
func (r *EmptyRouter) RouteRequest(req *protocol.Request) (Policy, error) {
|
|
return r.DefaultPolicy, nil
|
|
}
|