Skip to content

Commit 9c33013

Browse files
committed
改包名
1 parent bb059f3 commit 9c33013

32 files changed

Lines changed: 123 additions & 123 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module BackendTemplate
1+
module Rshell
22

33
go 1.21
44

main.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package main
22

33
import (
4-
"BackendTemplate/pkg/database"
5-
"BackendTemplate/pkg/encrypt"
6-
"BackendTemplate/pkg/logger"
7-
"BackendTemplate/pkg/routers"
8-
"BackendTemplate/pkg/utils"
4+
"Rshell/pkg/database"
5+
"Rshell/pkg/encrypt"
6+
"Rshell/pkg/logger"
7+
"Rshell/pkg/routers"
8+
"Rshell/pkg/utils"
99
"embed"
1010
"flag"
1111
"io/fs"

pkg/api/clients.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package api
22

33
import (
4-
"BackendTemplate/pkg/command"
5-
"BackendTemplate/pkg/database"
6-
"BackendTemplate/pkg/godonut"
7-
"BackendTemplate/pkg/logger"
8-
"BackendTemplate/pkg/sendcommand"
9-
"BackendTemplate/pkg/utils"
4+
"Rshell/pkg/command"
5+
"Rshell/pkg/database"
6+
"Rshell/pkg/godonut"
7+
"Rshell/pkg/logger"
8+
"Rshell/pkg/sendcommand"
9+
"Rshell/pkg/utils"
1010
"context"
1111
"encoding/binary"
1212
"github.com/gin-gonic/gin"

pkg/api/communication/get.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
package communication
22

33
import (
4-
"BackendTemplate/pkg/command"
5-
"BackendTemplate/pkg/config"
6-
"BackendTemplate/pkg/connection"
7-
"BackendTemplate/pkg/database"
8-
"BackendTemplate/pkg/encrypt"
9-
"BackendTemplate/pkg/logger"
10-
"BackendTemplate/pkg/qqwry"
11-
"BackendTemplate/pkg/utils"
12-
"BackendTemplate/pkg/webhooks"
4+
"Rshell/pkg/command"
5+
"Rshell/pkg/config"
6+
"Rshell/pkg/connection"
7+
"Rshell/pkg/database"
8+
"Rshell/pkg/encrypt"
9+
"Rshell/pkg/logger"
10+
"Rshell/pkg/qqwry"
11+
"Rshell/pkg/utils"
12+
"Rshell/pkg/webhooks"
1313
"encoding/base64"
1414
"encoding/binary"
1515
"encoding/json"

pkg/api/communication/post.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package communication
22

33
import (
4-
"BackendTemplate/pkg/command"
5-
"BackendTemplate/pkg/config"
6-
"BackendTemplate/pkg/database"
7-
"BackendTemplate/pkg/encrypt"
8-
"BackendTemplate/pkg/interactive"
9-
"BackendTemplate/pkg/logger"
10-
"BackendTemplate/pkg/utils"
4+
"Rshell/pkg/command"
5+
"Rshell/pkg/config"
6+
"Rshell/pkg/database"
7+
"Rshell/pkg/encrypt"
8+
"Rshell/pkg/interactive"
9+
"Rshell/pkg/logger"
10+
"Rshell/pkg/utils"
1111
"encoding/binary"
1212
"encoding/json"
1313
"fmt"

pkg/api/interactiveshell.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package api
22

33
import (
4-
"BackendTemplate/pkg/command"
5-
"BackendTemplate/pkg/common"
6-
"BackendTemplate/pkg/interactive" // 使用新的interactive包
7-
"BackendTemplate/pkg/logger"
8-
"BackendTemplate/pkg/sendcommand"
9-
"BackendTemplate/pkg/utils"
4+
"Rshell/pkg/command"
5+
"Rshell/pkg/common"
6+
"Rshell/pkg/interactive" // 使用新的interactive包
7+
"Rshell/pkg/logger"
8+
"Rshell/pkg/sendcommand"
9+
"Rshell/pkg/utils"
1010
"bytes"
1111
"encoding/binary"
1212
"encoding/json"

pkg/api/listener.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
package api
22

33
import (
4-
"BackendTemplate/pkg/api/communication"
5-
k "BackendTemplate/pkg/connection/kcp"
6-
"BackendTemplate/pkg/connection/oss"
7-
"BackendTemplate/pkg/connection/tcp"
8-
"BackendTemplate/pkg/connection/websocket"
9-
"BackendTemplate/pkg/database"
10-
"BackendTemplate/pkg/logger"
4+
"Rshell/pkg/api/communication"
5+
k "Rshell/pkg/connection/kcp"
6+
"Rshell/pkg/connection/oss"
7+
"Rshell/pkg/connection/tcp"
8+
"Rshell/pkg/connection/websocket"
9+
"Rshell/pkg/database"
10+
"Rshell/pkg/logger"
1111
"context"
1212
"fmt"
1313
"github.com/gin-gonic/gin"

pkg/api/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package api
22

33
import (
4-
"BackendTemplate/pkg/database"
5-
"BackendTemplate/pkg/encrypt"
6-
"BackendTemplate/pkg/logger"
4+
"Rshell/pkg/database"
5+
"Rshell/pkg/encrypt"
6+
"Rshell/pkg/logger"
77
"bytes"
88
"embed"
99
"github.com/gin-gonic/gin"

pkg/api/settings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package api
22

33
import (
4-
"BackendTemplate/pkg/database"
4+
"Rshell/pkg/database"
55
"net/http"
66

77
"github.com/gin-gonic/gin"

pkg/api/shellcode.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package api
22

33
import (
4-
"BackendTemplate/pkg/database"
5-
"BackendTemplate/pkg/godonut"
4+
"Rshell/pkg/database"
5+
"Rshell/pkg/godonut"
66
"bytes"
77
"embed"
88
"encoding/hex"

0 commit comments

Comments
 (0)