fix(config): support multiple configuration files for frpc

This commit is contained in:
2026-01-14 00:03:18 +08:00
parent 655dc3cb2a
commit 2dac44ac2e
5 changed files with 106 additions and 15 deletions

View File

@@ -1,6 +1,11 @@
package banner
import "fmt"
import (
"fmt"
"github.com/fatedier/frp/pkg/util/log"
"github.com/fatedier/frp/pkg/util/version"
)
func DisplayBanner() {
fmt.Println(" __ ___ __________ ____ ________ ____")
@@ -9,4 +14,5 @@ func DisplayBanner() {
fmt.Println(" / /___/ /_/ / / / /_/ / __/ / _, _/ ____/_____/ /___/ /____/ / ")
fmt.Println("/_____/\\____/_/_/\\__,_/_/ /_/ |_/_/ \\____/_____/___/ ")
fmt.Println(" ")
log.Infof("Nya! %s 启动中", version.Full())
}