FeishuConn holds the essential information to connect to the Feishu API
| 30 | |
| 31 | // FeishuConn holds the essential information to connect to the Feishu API |
| 32 | type FeishuConn struct { |
| 33 | helper.RestConnection `mapstructure:",squash"` |
| 34 | helper.AppKey `mapstructure:",squash"` |
| 35 | } |
| 36 | |
| 37 | func (conn *FeishuConn) Sanitize() FeishuConn { |
| 38 | conn.SecretKey = utils.SanitizeString(conn.SecretKey) |
nothing calls this directly
no outgoing calls
no test coverage detected