mattermost-mobile/detox/e2e/support/server_api/index.js
2020-11-17 14:20:58 -03:00

20 lines
403 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Channel from './channel';
import Ldap from './ldap';
import Post from './post';
import Setup from './setup';
import System from './system';
import Team from './team';
import User from './user';
export {
Channel,
Ldap,
Post,
Setup,
System,
Team,
User,
};