mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-04 12:52:27 +08:00
rebase release-2.0
This commit is contained in:
20
wechat.go
20
wechat.go
@@ -1,15 +1,31 @@
|
||||
package wechat
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/silenceper/wechat/v2/miniprogram"
|
||||
miniConfig "github.com/silenceper/wechat/v2/miniprogram/config"
|
||||
payConfig "github.com/silenceper/wechat/v2/pay/config"
|
||||
|
||||
"github.com/silenceper/wechat/v2/officialaccount"
|
||||
offConfig "github.com/silenceper/wechat/v2/officialaccount/config"
|
||||
"github.com/silenceper/wechat/v2/pay"
|
||||
payConfig "github.com/silenceper/wechat/v2/pay/config"
|
||||
log "github.com/sirupsen/logrus"
|
||||
)
|
||||
|
||||
func init() {
|
||||
|
||||
// Log as JSON instead of the default ASCII formatter.
|
||||
log.SetFormatter(&log.TextFormatter{})
|
||||
|
||||
// Output to stdout instead of the default stderr
|
||||
// Can be any io.Writer, see below for File example
|
||||
log.SetOutput(os.Stdout)
|
||||
|
||||
// Only log the warning severity or above.
|
||||
log.SetLevel(log.DebugLevel)
|
||||
|
||||
}
|
||||
|
||||
// Wechat struct
|
||||
type Wechat struct {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user