mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 02:20:25 +08:00
18 lines
335 B
Go
18 lines
335 B
Go
|
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
//go:build !plus
|
||
|
|
// +build !plus
|
||
|
|
|
||
|
|
package nodes
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
||
|
|
)
|
||
|
|
|
||
|
|
func (this *HTTPRequest) checkLnRequest() bool {
|
||
|
|
return false
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *HTTPRequest) getLnOrigin() *serverconfigs.OriginConfig {
|
||
|
|
return nil
|
||
|
|
}
|