feat: Add campaign (#2177)

This commit is contained in:
Muhsin Keloth 2021-05-04 15:08:41 +05:30 committed by GitHub
parent eaa61c3745
commit 7c7f91e70f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 792 additions and 19 deletions

View file

@ -0,0 +1,9 @@
import ApiClient from './ApiClient';
class CampaignsAPI extends ApiClient {
constructor() {
super('campaigns', { accountScoped: true });
}
}
export default new CampaignsAPI();