阶段性提交

This commit is contained in:
刘祥超
2020-09-15 14:44:11 +08:00
parent 512a1ac013
commit 39fc21cf5b
23 changed files with 1496 additions and 78 deletions

View File

@@ -0,0 +1,14 @@
package models
import (
_ "github.com/go-sql-driver/mysql"
"testing"
)
func TestReverseProxyDAO_ComposeReverseProxyConfig(t *testing.T) {
config, err := SharedReverseProxyDAO.ComposeReverseProxyConfig(1)
if err != nil {
t.Fatal(err)
}
t.Log(config)
}