mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-10 15:52:26 +08:00
企业会话存档只在linux平台支持 (#447)
This commit is contained in:
19
work/msgaudit/client_unsupport.go
Normal file
19
work/msgaudit/client_unsupport.go
Normal file
@@ -0,0 +1,19 @@
|
||||
// +build !linux
|
||||
|
||||
//Package msgaudit for unsupport platform
|
||||
package msgaudit
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/silenceper/wechat/v2/work/config"
|
||||
)
|
||||
|
||||
// Client 会话存档
|
||||
type Client struct {
|
||||
}
|
||||
|
||||
// NewClient new
|
||||
func NewClient(cfg *config.Config) (*Client, error) {
|
||||
return nil, fmt.Errorf("会话存档功能目前只支持Linux平台运行")
|
||||
}
|
||||
Reference in New Issue
Block a user