mirror of https://github.com/webpack/webpack.git
7 lines
156 B
JavaScript
7 lines
156 B
JavaScript
|
const UserApi = import("./UserApi.js");
|
||
|
|
||
|
export const CreateUserAction = async name => {
|
||
|
const { createUser } = await UserApi;
|
||
|
await createUser(name);
|
||
|
};
|