This commit is contained in:
2022-03-17 15:55:27 +08:00
commit bd5a9fad97
92 changed files with 13861 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package acc
import (
"time"
"gitlab.33.cn/chat/im/logic/auth"
)
const Name = "zb_otc"
func init() {
auth.Register(Name, NewAuth)
}
func NewAuth(url string, timeout time.Duration) auth.Auth {
return &talkClient{url: url, timeout: timeout}
}