Cosmos-Server/client/src/api/index.jsx

8 lines
161 B
React
Raw Normal View History

2023-03-12 18:17:28 +00:00
import * as auth from './authentication.jsx';
2023-03-13 00:49:27 +00:00
import * as users from './users.jsx';
2023-03-16 18:56:36 +00:00
import * as config from './config.jsx';
2023-03-12 18:17:28 +00:00
export {
2023-03-13 00:49:27 +00:00
auth,
2023-03-16 18:56:36 +00:00
users,
config
2023-03-12 18:17:28 +00:00
};