diff --git a/impl.go b/impl.go index 281df2f9..d8223383 100644 --- a/impl.go +++ b/impl.go @@ -91,6 +91,14 @@ type Lark struct { Verification *VerificationService } +func (r *Lark) AppID() string { + return r.appID +} + +func (r *Lark) AppSecret() string { + return r.appSecret +} + func (r *Lark) init() { r.wrapDoRequest = chainApiMiddleware(r.apiMiddlewares...)(r.rawRequest)