This commit is contained in:
Yuzuki616
2024-12-17 07:18:10 +09:00
parent 2c9b33efee
commit 68519193ec
9 changed files with 15 additions and 15 deletions

View File

@@ -1,8 +1,8 @@
package acme
import (
"Ratte/conf"
"fmt"
"github.com/InazumaV/Ratte/conf"
"path"
"github.com/go-acme/lego/v4/certcrypto"

View File

@@ -1,8 +1,8 @@
package acme
import (
"Ratte/common/file"
"fmt"
"github.com/InazumaV/Ratte/common/file"
"github.com/go-acme/lego/v4/certcrypto"
"github.com/go-acme/lego/v4/certificate"
"github.com/go-acme/lego/v4/challenge/http01"

View File

@@ -1,7 +1,6 @@
package acme
import (
"Ratte/common/file"
"crypto"
"crypto/ecdsa"
"crypto/elliptic"
@@ -9,6 +8,7 @@ import (
"crypto/x509"
"encoding/pem"
"fmt"
"github.com/InazumaV/Ratte/common/file"
"github.com/go-acme/lego/v4/lego"
"github.com/go-acme/lego/v4/registration"
"github.com/goccy/go-json"

View File

@@ -1,13 +1,13 @@
package main
import (
"Ratte/acme"
"Ratte/conf"
"Ratte/handler"
"Ratte/trigger"
"fmt"
"github.com/InazumaV/Ratte-Interface/core"
"github.com/InazumaV/Ratte-Interface/panel"
"github.com/InazumaV/Ratte/acme"
"github.com/InazumaV/Ratte/conf"
"github.com/InazumaV/Ratte/handler"
"github.com/InazumaV/Ratte/trigger"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"os"

View File

@@ -1,9 +1,9 @@
package conf
import (
trim "Ratte/common/json"
"Ratte/common/watcher"
"fmt"
trim "github.com/InazumaV/Ratte/common/json"
"github.com/InazumaV/Ratte/common/watcher"
"net/http"
"os"

View File

@@ -1,9 +1,9 @@
package conf
import (
"Ratte/common/watcher"
"errors"
"fmt"
"github.com/InazumaV/Ratte/common/watcher"
log "github.com/sirupsen/logrus"
"path"
)

View File

@@ -1,8 +1,8 @@
package handler
import (
"Ratte/acme"
"Ratte/conf"
"github.com/InazumaV/Ratte/acme"
"github.com/InazumaV/Ratte/conf"
"github.com/sirupsen/logrus"
"sync/atomic"
)

View File

@@ -1,10 +1,10 @@
package handler
import (
"Ratte/common/slices"
"fmt"
"github.com/InazumaV/Ratte-Interface/core"
"github.com/InazumaV/Ratte-Interface/panel"
"github.com/InazumaV/Ratte/common/slices"
)
func compareUserList(old, new []panel.UserInfo) (deleted []string, added []panel.UserInfo) {

View File

@@ -1,10 +1,10 @@
package trigger
import (
"Ratte/conf"
"Ratte/handler"
"fmt"
"github.com/InazumaV/Ratte-Interface/panel"
"github.com/InazumaV/Ratte/conf"
"github.com/InazumaV/Ratte/handler"
cmap "github.com/orcaman/concurrent-map/v2"
"github.com/robfig/cron/v3"
"github.com/sirupsen/logrus"