mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-19 20:08:24 +08:00
12 lines
143 B
Go
12 lines
143 B
Go
|
//go:build !xpack
|
||
|
|
||
|
package xpack
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func Proxy(c *gin.Context, currentNode string) error {
|
||
|
return nil
|
||
|
}
|