Skip to content

Commit e05b574

Browse files
committed
modify package name add github
1 parent edc5558 commit e05b574

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

callback.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"ChatGLM/client"
54
"fmt"
5+
"github.com/leverly/ChatGLM/client"
66
)
77

88
type StreamCallback struct {

go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
module ChatGLM
1+
module github.com/leverly/ChatGLM
22

3-
go 1.19
3+
go 1.18
44

55
require github.com/dgrijalva/jwt-go v3.2.0+incompatible

main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
package main
22

33
import (
4-
"ChatGLM/client"
54
"fmt"
65
"time"
6+
7+
"github.com/leverly/ChatGLM/client"
78
)
89

910
const API_KEY = "XXX.XXX"

0 commit comments

Comments
 (0)