0.1.0 • Published 1 year ago

nest-wechat-open-api v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

NEST WECHAT OPEN API

基于 Nest 封装的微信生态服务端接口

使用

导入模块:

import { WechatAppModule } from 'nest-wechat-open-api';

@Module({
  imports: [
    WechatAppModule.forRoot({ appid: '', secret: '' }),
  ],
})

使用:

import { WechatAppService } from 'nest-wechat-open-api';

@Injectable()
export class UserService {
  constructor(private readonly wechatAppService: WechatAppService) {}
}

使用文档

License

MIT