// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

import * as actions from './actions';
import * as admin from './admin';
import * as channels from './channels';
import * as client4 from './client4';
import * as errors from './errors';
import * as emojis from './emojis';
import * as files from './files';
import * as general from './general';
import * as groups from './groups';
import * as integrations from './integrations';
import * as jobs from './jobs';
import * as posts from './posts';
import * as preferences from './preferences';
import * as reactions from './reactions';
import * as requests from './requests';
import * as roles from './roles';
import * as schemes from './schemes';
import * as search from './search';
import * as store from './store';
import * as teams from './teams';
import * as typing from './typing';
import * as utilities from './utilities';
import * as users from './users';
import * as bots from './bots';
import * as plugins from './plugins';
import * as config from './config';
import * as threads from './threads';

export {
    admin,
    config,
    actions,
    bots,
    plugins,
    store,
    channels,
    errors,
    emojis,
    files,
    general,
    groups,
    typing,
    integrations,
    jobs,
    utilities,
    posts,
    preferences,
    roles,
    client4,
    schemes,
    search,
    teams,
    threads,
    requests,
    reactions,
    users,
};
