feat: post messenger

This commit is contained in:
Noah Hsu
2022-07-01 16:53:01 +08:00
parent a6e5edcf53
commit e3891246b9
6 changed files with 120 additions and 4 deletions

View File

@ -2,7 +2,9 @@ package data
import (
"context"
"github.com/alist-org/alist/v3/cmd/args"
"github.com/alist-org/alist/v3/internal/db"
"github.com/alist-org/alist/v3/internal/message"
"github.com/alist-org/alist/v3/internal/model"
"github.com/alist-org/alist/v3/internal/operations"
log "github.com/sirupsen/logrus"
@ -30,3 +32,23 @@ func initDevData() {
log.Fatalf("failed to create user: %+v", err)
}
}
func initDevDo() {
if args.Dev {
go func() {
err := message.GetMessenger().WaitSend(map[string]string{
"type": "dev",
"msg": "dev mode",
}, 10)
if err != nil {
log.Debugf("%+v", err)
}
m, err := message.GetMessenger().WaitReceive(10)
if err != nil {
log.Debugf("%+v", err)
} else {
log.Debugf("received: %+v", m)
}
}()
}
}