[SSL证书]实现对ACME任务的增删改查

This commit is contained in:
刘祥超
2020-11-25 21:19:22 +08:00
parent 6e6083d6af
commit 4142fae762
22 changed files with 862 additions and 180 deletions

View File

@@ -0,0 +1,18 @@
package setup
import (
"github.com/iwind/TeaGo/dbs"
"testing"
)
func TestUpgradeSQLData(t *testing.T) {
db, err := dbs.Default()
if err != nil {
t.Fatal(err)
}
err = UpgradeSQLData(db)
if err != nil {
t.Fatal(err)
}
t.Log("ok")
}